Skip to content

Commit

Permalink
Convert changesets action output to JSON before accessing it (#699)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasIO authored Apr 26, 2024
1 parent 17f16c6 commit 67ad5a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ jobs:
uses: rickstaa/action-create-tag@v1
id: tag_create
with:
tag: ${{format('v{0}', steps.changesets.outputs.publishedPackages[0].version)}}
tag: ${{format('v{0}', fromJson(steps.changesets.outputs.publishedPackages)[0].version)}}
tag_exists_error: false
message: "github.com/livekit/protocol@${{steps.changesets.outputs.publishedPackages.version}}"
message: "github.com/livekit/protocol@${{fromJson(steps.changesets.outputs.publishedPackages)[0].version}}"

0 comments on commit 67ad5a7

Please sign in to comment.