Skip to content

release-images

release-images #118

name: release-images
on:
workflow_run:
workflows: ["tag-repo-version"]
types: [completed]
jobs:
build-and-push:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
outputs:
tag: ${{ steps.tag.outputs.tag }}
env:
SOURCE_SHA: ${{ github.event.workflow_run.head_sha }}
strategy:
matrix:
service: [web, worker]
steps:
- name: Checkout (full history for tags)
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fetch tags
run: git fetch --tags --force
- name: Resolve the tag that points at the workflow SHA
id: tag
shell: bash
run: |
set -euo pipefail
TAG="$(git tag --points-at "${SOURCE_SHA}" \
| grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$' \
| head -n1 || true)"
if [ -z "${TAG}" ]; then
exit 1
fi
echo "tag=${TAG}" >> "$GITHUB_OUTPUT"
- name: Checkout the exact tag
run: git checkout ${{ steps.tag.outputs.tag }}
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
# Login to GHCR
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: docker.io
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build & push ${{ matrix.service }}
uses: docker/build-push-action@v6
with:
context: .
file: apps/${{ matrix.service }}/Dockerfile
push: true
platforms: linux/amd64,linux/arm64
tags: |
ghcr.io/${{ github.repository_owner }}/kurrier-${{ matrix.service }}:${{ steps.tag.outputs.tag }}
ghcr.io/${{ github.repository_owner }}/kurrier-${{ matrix.service }}:latest
docker.io/${{ secrets.DOCKERHUB_USERNAME }}/kurrier-${{ matrix.service }}:${{ steps.tag.outputs.tag }}
docker.io/${{ secrets.DOCKERHUB_USERNAME }}/kurrier-${{ matrix.service }}:latest
build-args: |
NODE_ENV=production
provenance: true
sbom: true
github-release:
needs: build-and-push
runs-on: ubuntu-latest
permissions:
contents: write
if: ${{ needs.build-and-push.outputs.tag != '' }}
steps:
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.build-and-push.outputs.tag }}
name: ${{ needs.build-and-push.outputs.tag }}
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}