Skip to content

Commit

Permalink
fix(publish): limit concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubilmax committed Oct 17, 2024
1 parent 44acea1 commit edcfa67
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:

- run: pnpm -r --parallel -c exec "jq '.release = input.release_version' package.json ../../package.json > tmp.json && mv tmp.json package.json"

- run: pnpm -r --parallel --no-reporter-hide-prefix exec semantic-release
# Limit concurrency to avoid semantic-release failing at pushing tags.
- run: pnpm -r --workspace-concurrency=1 --no-reporter-hide-prefix exec semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit edcfa67

Please sign in to comment.