1 parent 02d4e1e commit e3cf12bCopy full SHA for e3cf12b
1 file changed
.github/workflows/release-nightly.yml
@@ -68,10 +68,10 @@ jobs:
68
- name: Make tags
69
run: |
70
TAGS=()
71
- if [[ ${{ inputs.use_nightly_tag }} == 'true' ]]; then
+ if [[ "${{ inputs.use_nightly_tag }}" == 'true' ]]; then
72
TAGS+=('${{ env.IMAGE }}:nightly')
73
fi
74
- if [[ ${{ inputs.use_git_hash_tag }} == 'true' ]]; then
+ if [[ "${{ inputs.use_git_hash_tag }}" == 'true' ]]; then
75
TAGS+=('${{ env.IMAGE }}:${{ needs.metadata.outputs.git_hash }}')
76
77
echo "Will push the following tags: $TAGS"
0 commit comments