Skip to content

docker compose fixes (#862) #35

docker compose fixes (#862)

docker compose fixes (#862) #35

name: Publish backoffice image
on:
workflow_dispatch:
push:
paths:
# Run this pipeline only if there are changes in specified path
- "apps/backoffice-v2/**"
branches:
- dev
- test
- staging
- prod
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository_owner }}/backoffice
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install jq
run: sudo apt-get install jq
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get package version from package.json
id: get_version
run: |
PACKAGE_VERSION=$(jq -r '.version' apps/backoffice-v2/package.json)
echo "::set-output name=version::$PACKAGE_VERSION"
- name: Print the version
run: echo "The version was ${{ steps.get_version.outputs.version }}"
- name: Extract metadata (tags, labels) for dev Docker
if: github.ref == 'refs/heads/dev'
id: devmeta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=dev
type=raw,value=commit-${{ github.sha }}-dev
type=raw,value=${{ steps.get_version.outputs.version }}-dev
- name: Extract metadata (tags, labels) for test Docker
if: github.ref == 'refs/heads/test'
id: testmeta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=test
type=raw,value=commit-${{ github.sha }}-test
type=raw,value=${{ steps.get_version.outputs.version }}-test
- name: Extract metadata (tags, labels) for prod Docker
if: github.ref == 'refs/heads/prod'
id: prodmeta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=prod
type=raw,value=commit-${{ github.sha }}-prod
type=raw,value=${{ steps.get_version.outputs.version }}-prod
- name: Extract metadata for other branches Docker
if: ${{ github.event_name == 'workflow_dispatch' }}
id: branchmeta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=${{ github.head_ref || github.ref_name }}
type=raw,value=commit-${{ github.sha }}-${{ github.head_ref || github.ref_name }}
- name: Build and push Docker image for Dev Branch
if: github.ref == 'refs/heads/dev'
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: apps/backoffice-v2
push: true
tags: ${{ steps.devmeta.outputs.tags }}
- name: Build and push Docker image for Test Branch
if: github.ref == 'refs/heads/test'
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: apps/backoffice-v2
push: true
tags: ${{ steps.testmeta.outputs.tags }}
- name: Build and push Docker image for prod Branch
if: github.ref == 'refs/heads/prod'
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: apps/backoffice-v2/
push: true
tags: ${{ steps.prodmeta.outputs.tags }}
- name: Build and push Docker image for other branch
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: apps/backoffice-v2/
push: true
tags: ${{ steps.branchmeta.outputs.tags }}