Skip to content

Commit

Permalink
Add missing {} to displayed arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
Mandrenkov committed Oct 27, 2023
1 parent 62130a1 commit 72d5498
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generate-docker-image-tags/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ runs:
fi
done <<< "$ids"
echo "Story tags are '$TAGS[@]'."
echo "Story tags are '${TAGS[@]}'."
echo "tags=$TAGS" >> $GITHUB_OUTPUT
- id: get-branch-tags
Expand All @@ -110,7 +110,7 @@ runs:
TAGS=("${{ inputs.prefix }}.$SLASHLESS_BRANCH" "${{ inputs.prefix }}.$COMMIT_SHA")
fi
echo "Branch tags are '$TAGS[@]'."
echo "Branch tags are '${TAGS[@]}'."
echo "tags=$TAGS" >> $GITHUB_OUTPUT
- id: get-tags
Expand Down

0 comments on commit 72d5498

Please sign in to comment.