We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e30669 commit 5e4456dCopy full SHA for 5e4456d
1 file changed
.github/actions/create-multiarch-manifest/action.yml
@@ -24,7 +24,8 @@ runs:
24
steps:
25
- shell: bash
26
run: |
27
- tag=$(scripts/get_tag.sh "${{ inputs.image-flavor }}")
+ image_flavor="${{ inputs.image-flavor }}"
28
+ tag="$(scripts/get_tag.sh ${image_flavor})"
29
read -ra archs <<< "${{ inputs.archs }}"
30
declare -a images=()
31
for arch in "${archs[@]}"; do
0 commit comments