feat: pass env to Image resource #102
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Publish Images | |
on: | |
push: | |
tags: | |
- v[0-9]+.* | |
workflow_dispatch: {} | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build: | |
name: Build Image | |
runs-on: "cirun-aws-${{ matrix.platform }}--${{ github.run_id }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [amd64, arm64] | |
bin: [amp-apiserver, amp-controllers, amp-syncer] | |
include: | |
- bin: amp-apiserver | |
dockerfile: ./apiserver/Dockerfile | |
- bin: amp-controllers | |
dockerfile: ./controllers/Dockerfile | |
- bin: amp-syncer | |
dockerfile: ./syncer/Dockerfile | |
steps: | |
- name: Set environment variable | |
run: echo "IMAGE_NAME=ghcr.io/${{ github.repository_owner }}/${{ matrix.bin }}" >> $GITHUB_ENV | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.IMAGE_NAME }} | |
- name: Build and push image by digest | |
id: build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ${{ matrix.dockerfile }} | |
platforms: linux/${{ matrix.platform }} | |
labels: ${{ steps.meta.outputs.labels }} | |
outputs: type=image,name=${{ env.IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true | |
provenance: false | |
cache-from: type=gha | |
cache-to: type=gha | |
- name: Export digest | |
run: | | |
mkdir -p "/tmp/digests/${{ matrix.bin }}" | |
digest="${{ steps.build.outputs.digest }}" | |
touch "/tmp/digests/${{ matrix.bin }}/${digest#sha256:}" | |
echo "DIGEST=${digest#sha256:}" >> $GITHUB_ENV | |
- name: Upload digests | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.bin }}-digests-${{ env.DIGEST }} | |
path: /tmp/digests/${{ matrix.bin }}/* | |
if-no-files-found: error | |
retention-days: 1 | |
merge: | |
name: Merge digests | |
runs-on: ubuntu-latest | |
needs: build | |
strategy: | |
fail-fast: false | |
matrix: | |
bin: [amp-apiserver, amp-controllers, amp-syncer] | |
steps: | |
- name: Set environment variable | |
run: echo "IMAGE_NAME=ghcr.io/${{ github.repository_owner }}/${{ matrix.bin }}" >> $GITHUB_ENV | |
- name: Download digests | |
uses: actions/download-artifact@v4 | |
with: | |
path: /tmp/digests/${{ matrix.bin }} | |
pattern: ${{ matrix.bin }}-digests-* | |
merge-multiple: true | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.IMAGE_NAME }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create manifest list and push | |
working-directory: /tmp/digests/${{ matrix.bin }} | |
run: | | |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ | |
$(printf '${{ env.IMAGE_NAME }}@sha256:%s ' *) | |
- name: Inspect image | |
run: | | |
docker buildx imagetools inspect ${{ env.IMAGE_NAME }}:${{ steps.meta.outputs.version }} |