build mac ARM second option #86
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
# This workflow uses a `deno` binary along with `eslint` for code linting, and (optional) testing. | |
# If your tests *don't* require pkgs or non-repo files from your docker build image, | |
# then you can use this nicely for testing files in your repo like 'test/something.test.js' | |
# along with a full code coverage report. | |
name: CICD | |
on: push | |
jobs: | |
cicd: | |
runs-on: ubuntu-latest | |
permissions: { contents: read, packages: write, id-token: write } | |
steps: | |
- uses: internetarchive/cicd@v1 | |
with: | |
REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NOMAD_VAR_NO_DEPLOY: 'true' | |
# omit this next line -- used here so `dyno` can test itself in GitHub Actions: | |
TEST_SCRIPT: '/app/test.sh' | |
build-for-mac-arm: | |
runs-on: ubuntu-latest | |
permissions: { contents: read, packages: write, id-token: write } | |
steps: | |
- uses: internetarchive/build@v1 | |
with: | |
REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Extract branch name | |
shell: bash | |
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" | |
id: extract_branch | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: linux/arm64 | |
push: true | |
tags: ghcr.io/${{ github.repository }}:${{ steps.extract_branch.outputs.branch }} |