Skip to content

Commit

Permalink
chore: read published packages
Browse files Browse the repository at this point in the history
  • Loading branch information
openscript committed Sep 27, 2024
1 parent 8f60a70 commit f47b7bc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changeset/great-pets-grow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"backend": patch
"frontend": patch
---

Fix iterate published packages
2 changes: 1 addition & 1 deletion .github/workflows/cd-registries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
env:
INPUT_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
for package in ${{ inputs.publishedPackages }}; do
for package in $(echo '${{ inputs.publishedPackages }}' | jq -c '.[]'); do
NAME=$(echo $package | jq -r '.name')
VERSION=$(echo $package | jq -r '.version')
Expand Down

0 comments on commit f47b7bc

Please sign in to comment.