Skip to content

Commit cc594cd

Browse files
committed
fix: publish workflow
1 parent bc0dfcf commit cc594cd

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.changeset/silver-seals-carry.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@quassel/backend": patch
3+
"@quassel/frontend": patch
4+
---
5+
6+
Fix publish workflow

.github/workflows/cd-publish.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ jobs:
4848
possible_targets=$(pnpm nx show projects -t container --json)
4949
published_packages='${{ steps.changesets.outputs.publishedPackages }}'
5050
targets=$(echo $published_packages | jq --argjson possible_targets "$possible_targets" 'map(select(.name == $possible_targets[]))')
51-
echo "containers='$targets'" >> $GITHUB_OUTPUT
51+
targets_string=$(echo $targets | jq -r tostring)
52+
echo "containers='$targets_string'" >> $GITHUB_OUTPUT
5253
5354
outputs:
5455
published: ${{ steps.changesets.outputs.published }}

0 commit comments

Comments
 (0)