Merge pull request #1 from luthersystems/sam-at-luther/Support_ARM #3
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 Release and Push | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build-push-docker: | |
name: ${{ matrix.arch }} - docker build push | |
runs-on: ${{ fromJSON('{"arm64":"buildjet-2vcpu-ubuntu-2204-arm","amd64":"ubuntu-22.04"}')[matrix.arch] }} | |
strategy: | |
matrix: | |
arch: | |
- amd64 | |
- arm64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Configure DockerHub | |
uses: ./.github/actions/configure-dockerhub | |
env: | |
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | |
DOCKERHUB_USERNAME: ${{ vars.DOCKERHUB_USERNAME }} | |
- name: Publish | |
run: make docker-push VERSION=$GITHUB_REF_NAME TAG_SUFFIX=-${{ matrix.arch }} | |
push-docker-manifests: | |
runs-on: ubuntu-22.04 | |
needs: | |
- build-push-docker | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Configure DockerHub | |
uses: ./.github/actions/configure-dockerhub | |
env: | |
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | |
DOCKERHUB_USERNAME: ${{ vars.DOCKERHUB_USERNAME }} | |
- name: Publish | |
run: make push-manifests VERSION=$GITHUB_REF_NAME |