We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 55a7a8d + c1fca8f commit 2790ca8Copy full SHA for 2790ca8
.github/workflows/publish-to-dockerhub.yml
@@ -27,7 +27,7 @@ jobs:
27
fail-fast: false
28
matrix:
29
runner: ${{
30
- ((github.ref_type == 'tag' || inputs.build_arm == true) && fromJSON('["ubuntu-24.04", "ubuntu-24.04-arm"]')) ||
+ (inputs.build_arm == true && fromJSON('["ubuntu-24.04", "ubuntu-24.04-arm"]')) ||
31
fromJSON('["ubuntu-24.04"]')
32
}}
33
outputs:
@@ -90,7 +90,7 @@ jobs:
90
- name: Create and push multi-arch manifest
91
env:
92
BRANCH_NAME: ${{ inputs.branch_name || github.ref_name }}
93
- BUILD_ARM: ${{ github.ref_type == 'tag' || inputs.build_arm == true }}
+ BUILD_ARM: ${{ inputs.build_arm == true }}
94
run: |
95
TAG="${{ needs.build.outputs.version_common }}"
96
REPO="${{ secrets.DOCKERHUB_ACCOUNT}}/${{ secrets.DOCKERHUB_REPO }}"
0 commit comments