Merge branch 'cumulusci-next-snapshots' of github.com:muselab-d2x/d2x… #30
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 Multi-Arch Docker Images | |
on: | |
push: | |
branches: | |
- main | |
- cumulusci-next** | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: [no-browser, browser] | |
platform: [linux/amd64, linux/arm64] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set environment variables | |
run: | | |
if [ "${{ github.ref_name }}" == "main" ]; then | |
echo "IMAGE_TAG=latest" >> $GITHUB_ENV | |
else | |
echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV | |
fi | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: ${{ github.event_name == 'push' }} | |
tags: | | |
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}${{ matrix.target == 'browser' && '-browser' || '' }}${{ matrix.platform == 'linux/arm64' && '-arm64' || '' }} | |
platforms: ${{ matrix.platform }} | |
target: ${{ matrix.target }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
merge-manifests: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set environment variables | |
run: | | |
if [ "${{ github.ref_name }}" == "main" ]; then | |
echo "IMAGE_TAG=latest" >> $GITHUB_ENV | |
else | |
echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV | |
fi | |
- name: Create and push multi-arch manifests | |
run: | | |
# For no-browser | |
docker buildx imagetools create -t ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }} \ | |
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }} \ | |
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-arm64 | |
# For browser | |
docker buildx imagetools create -t ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-browser \ | |
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-browser \ | |
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-browser-arm64 | |
- name: Inspect manifests | |
run: | | |
echo "Inspecting no-browser manifest:" | |
docker buildx imagetools inspect ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }} | |
echo "Inspecting browser manifest:" | |
docker buildx imagetools inspect ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-browser |