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 41d8d2f commit 1d22cdbCopy full SHA for 1d22cdb
.github/workflows/release.yml
@@ -38,7 +38,7 @@ jobs:
38
- id: get-tags
39
if: ${{ steps.changesets.outputs.published == 'true' }}
40
run: |
41
- tags=$( echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -c 'map([.name,.version]) | map(join("@"))' )
+ tags=$( echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -c 'map([.name,.version]) | map(join("@")) | join(", ")' )
42
echo "::set-output name=tags::$tags"
43
44
- name: Bundle
@@ -55,7 +55,7 @@ jobs:
55
workflow_id: 'bundle.yml',
56
ref: 'main',
57
inputs: {
58
- tags: '${{ join(steps.get-tags.outputs.tags, ', ') }}'
+ tags: '${{ steps.get-tags.outputs.tags }}'
59
},
60
});
61
0 commit comments