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 96eac3e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ 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:
branches: ['master']
tags: [ 'v*' ]
branches:
- master
- ci**
tags:
- v*

# 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 +29,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 96eac3e

Please sign in to comment.