Skip to content

Commit

Permalink
ci: add support for building arm64 image
Browse files Browse the repository at this point in the history
  • Loading branch information
underw8 committed Mar 7, 2024
1 parent 3ea1b77 commit f20734f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@ name: Create and publish a Docker image
# Configures this workflow to run every time a change is pushed to the branch called `release`.
on:
push:
<<<<<<< Updated upstream
branches: ['master']
tags: [ 'v*' ]
=======
branches:
- master
- ci*
tags:
- v*
>>>>>>> Stashed changes

# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds.
env:
Expand All @@ -26,6 +34,8 @@ jobs:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
# Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
Expand Down

0 comments on commit f20734f

Please sign in to comment.