Skip to content

Commit

Permalink
Do not concurrently publish to npm (#1129)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey authored Jan 6, 2025
1 parent 73ae964 commit da4beaa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

# publishing can take longer than 30 minutes but we never want to
# run more than one publish job at a time
concurrency: 1
concurrency: publish-packages

env:
CI: true
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ env:
CI: true
PNPM_CACHE_FOLDER: .pnpm-store

concurrency: publish-packages

jobs:
publish-registry:
runs-on: ubuntu-latest
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/update-ts-version-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ on:
required: true
default: main
schedule:
# https://crontab.guru/#5_8_*_*_1
- cron: "5 8 * * 1"
# https://crontab.guru/#5_6_*_*_0
- cron: "5 6 * * 0"

concurrency: publish-packages

env:
CI: true
Expand Down

0 comments on commit da4beaa

Please sign in to comment.