We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e929c6 commit 7bacb4eCopy full SHA for 7bacb4e
1 file changed
.github/workflows/main.yml
@@ -258,8 +258,15 @@ jobs:
258
id: nrVersion
259
run: |
260
TAGS=""
261
+ while IFS= read -r TAG;do
262
+ if [ -z "$TAGS" ]; then
263
+ TAGS=$TAG
264
+ else
265
+ TAGS="$TAGS,$TAG"
266
+ fi
267
+ done <<< "${{ steps.meta.outputs.tags }}"
268
- echo Original tags ${{ steps.meta.outputs.tags }}
269
+ echo "Original tags $TAGS"
270
271
if [[ ! -z "${{ github.event.inputs.version }}" ]]; then
272
TRAVIS_TAG=${{ github.event.inputs.version }}
0 commit comments