We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49de365 commit 76da996Copy full SHA for 76da996
1 file changed
.github/workflows/release.yml
@@ -43,10 +43,7 @@ jobs:
43
- name: Transform Tags
44
id: get-tags
45
if: ${{ steps.changesets.outputs.published == 'true' }}
46
- run: |
47
- tags=$( echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -c 'map([.name,.version]) | map(join("@")) | join(", ")' )
48
- echo "$tags"
49
- echo "::set-output name=tags::$tags"
+ run: echo "tags=$( echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -c 'map([.name,.version]) | map(join("@")) | join(", ")' )" >> $GITHUB_OUTPUT
50
51
- name: Bundle
52
id: bundle
0 commit comments