diff --git a/.github/workflows/image-alpine.yml b/.github/workflows/image-alpine.yml index 7b680a3be..2c59fc975 100644 --- a/.github/workflows/image-alpine.yml +++ b/.github/workflows/image-alpine.yml @@ -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" @@ -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