Skip to content

Commit 1d22cdb

Browse files
committed
chore(ci): fix bundle release trigger
1 parent 41d8d2f commit 1d22cdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- id: get-tags
3939
if: ${{ steps.changesets.outputs.published == 'true' }}
4040
run: |
41-
tags=$( echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -c 'map([.name,.version]) | map(join("@"))' )
41+
tags=$( echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -c 'map([.name,.version]) | map(join("@")) | join(", ")' )
4242
echo "::set-output name=tags::$tags"
4343
4444
- name: Bundle
@@ -55,7 +55,7 @@ jobs:
5555
workflow_id: 'bundle.yml',
5656
ref: 'main',
5757
inputs: {
58-
tags: '${{ join(steps.get-tags.outputs.tags, ', ') }}'
58+
tags: '${{ steps.get-tags.outputs.tags }}'
5959
},
6060
});
6161

0 commit comments

Comments
 (0)