Skip to content

update sync

update sync #31

name: Create and publish backend Docker images
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
env:
REGISTRY: ghcr.io
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
module:
- api-public
- api-internal
- sync-github
- sync-jira
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/ccims/gropius-${{ matrix.module }}
tags: |
type=semver,pattern={{version}}
type=edge,branch=main
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./gropius-backend
build-args: |
module=${{ matrix.module }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}