Skip to content

Commit

Permalink
Merge pull request #153 from MusicDin/feat/arm-container
Browse files Browse the repository at this point in the history
images: Disable Alpine arm64 VMs
  • Loading branch information
tomponline authored Apr 19, 2024
2 parents 76a4648 + 111d2d9 commit 3ea900b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/image-alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
build_arm64:
- ${{ inputs.build-arm64 == true || github.event.schedule == '0 0 * * 1' }}
exclude:
- {architecture: amd64, build_arm64: true}
- {architecture: arm64, build_arm64: false}
env:
type: "container"
Expand All @@ -51,7 +52,7 @@ jobs:
- name: Determine image types
run: |
ARCH="${{ matrix.architecture }}"
if [ "${ARCH}" = "amd64" ] || [ "${ARCH}" = "arm64" ]; then
if [ "${ARCH}" = "amd64" ]; then
echo "type=container,vm" >> $GITHUB_ENV
fi
Expand Down

0 comments on commit 3ea900b

Please sign in to comment.