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.
1 parent 0aa1197 commit 70061f1Copy full SHA for 70061f1
.github/workflows/docker-build-push.yml
@@ -75,12 +75,11 @@ jobs:
75
run: |
76
set -euo pipefail
77
IFS=$'\n\t'
78
- images=""
+ images=()
79
for tag in ${TAGS}; do
80
- images+="${tag}@${DIGEST} "
+ images+=("${tag}@${DIGEST}")
81
done
82
- # shellcheck disable=SC2086
83
- cosign sign --recursive --yes ${images}
+ cosign sign --recursive --yes "${images[@]}"
84
- name: Set VERSION
85
if: github.ref == 'refs/heads/main'
86
shell: bash
0 commit comments