Skip to content

Commit

Permalink
Fix for publish
Browse files Browse the repository at this point in the history
  • Loading branch information
kaleidawave committed May 31, 2024
1 parent fbf6aae commit 934cf16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ jobs:
echo "SPONSORS=$SPONSORS" >> $GITHUB_OUTPUT
CONTRIBUTORS=$(
gh pr list --search "-author:@me" --state merged --json author
| jq 'map(.author.name) | unique | join(",")'
gh pr list --search "-author:@me" --state merged --json author | jq 'map(.author.name) | unique | join(",")' --raw-output
)
echo "CONTRIBUTORS=$CONTRIBUTORS" >> $GITHUB_OUTPUT
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ jobs:
echo "SPONSORS=$SPONSORS" >> $GITHUB_OUTPUT
CONTRIBUTORS=$(
gh pr list --search "-author:@me" --state merged --json author
| jq 'map(.author.name) | unique | join(",")'
gh pr list --search "-author:@me" --state merged --json author | jq 'map(.author.name) | unique | join(",")' --raw-output
)
echo "CONTRIBUTORS=$CONTRIBUTORS" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 934cf16

Please sign in to comment.