Revert "Try latest qemu version" #296
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: MultiArchDockerBuild | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
jobs: | |
build_multi_arch_image: | |
name: Build multi-arch Docker image. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set environment variables | |
run: echo "GIT_BRANCH=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
install: true | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push master (Alpine) | |
if: ${{ github.ref == 'refs/heads/master' }} | |
uses: docker/build-push-action@v5 | |
with: | |
provenance: false # enable later when runtime support is better | |
target: deploy | |
push: true | |
tags: | | |
charlocharlie/epicgames-freegames:latest | |
charlocharlie/epicgames-freegames:${{ github.sha }} | |
ghcr.io/claabs/epicgames-freegames-node:latest | |
ghcr.io/claabs/epicgames-freegames-node:${{ github.sha }} | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
build-args: | | |
COMMIT_SHA=${{ github.sha }} | |
BRANCH=${{ env.GIT_BRANCH }} | |
cache-from: type=gha,scope=${{ github.workflow }} | |
cache-to: type=gha,mode=max,scope=${{ github.workflow }} | |
- name: Build and push master (Debian) | |
if: ${{ github.ref == 'refs/heads/master' }} | |
uses: docker/build-push-action@v5 | |
with: | |
provenance: false # enable later when runtime support is better | |
target: deploy | |
push: true | |
file: Dockerfile.debian | |
tags: | | |
charlocharlie/epicgames-freegames:bullseye-slim | |
ghcr.io/claabs/epicgames-freegames-node:bullseye-slim | |
charlocharlie/epicgames-freegames:debian | |
ghcr.io/claabs/epicgames-freegames-node:debian | |
platforms: linux/amd64 | |
build-args: | | |
COMMIT_SHA=${{ github.sha }} | |
BRANCH=${{ env.GIT_BRANCH }} | |
cache-from: type=gha,scope=${{ github.workflow }}-Debian | |
cache-to: type=gha,mode=max,scope=${{ github.workflow }}-Debian | |
- name: Build and push dev | |
if: ${{ github.ref == 'refs/heads/develop' }} | |
uses: docker/build-push-action@v5 | |
with: | |
provenance: false # enable later when runtime support is better | |
target: deploy | |
push: true | |
tags: | | |
charlocharlie/epicgames-freegames:dev | |
ghcr.io/claabs/epicgames-freegames-node:dev | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
build-args: | | |
COMMIT_SHA=${{ github.sha }} | |
BRANCH=${{ env.GIT_BRANCH }} | |
cache-from: type=gha,scope=${{ github.workflow }} | |
cache-to: type=gha,mode=max,scope=${{ github.workflow }} |