Skip to content

Commit e3cf12b

Browse files
committed
chore(ci): Fix automated release-nightly workflow
1 parent 02d4e1e commit e3cf12b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ jobs:
6868
- name: Make tags
6969
run: |
7070
TAGS=()
71-
if [[ ${{ inputs.use_nightly_tag }} == 'true' ]]; then
71+
if [[ "${{ inputs.use_nightly_tag }}" == 'true' ]]; then
7272
TAGS+=('${{ env.IMAGE }}:nightly')
7373
fi
74-
if [[ ${{ inputs.use_git_hash_tag }} == 'true' ]]; then
74+
if [[ "${{ inputs.use_git_hash_tag }}" == 'true' ]]; then
7575
TAGS+=('${{ env.IMAGE }}:${{ needs.metadata.outputs.git_hash }}')
7676
fi
7777
echo "Will push the following tags: $TAGS"

0 commit comments

Comments
 (0)