name: Build docker image permissions: contents: read on: release: types: - published push: branches: - master env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} jobs: build-and-push-image: runs-on: ubuntu-latest permissions: contents: read packages: write steps: - name: Checkout repository uses: actions/checkout@v3 - name: Docker meta id: meta uses: docker/metadata-action@v3 with: images: | ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} # generate Docker tags based on the following events/attributes tags: | type=ref,event=branch type=ref,event=pr type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} - name: Log in to the Container registry # https://github.com/docker/login-action/releases/tag/v2.0.0 uses: docker/login-action@49ed152c8eca782a232dede0303416e8f356c37b with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push Docker image # https://github.com/docker/build-push-action/releases/tag/v3.0.0 uses: docker/build-push-action@e551b19e49efd4e98792db7592c17c09b89db8d8 with: context: . push: ${{ github.event_name == 'release' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}