Skip to content

Commit da4beaa

Browse files
authored
Do not concurrently publish to npm (#1129)
1 parent 73ae964 commit da4beaa

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/publish-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

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

1212
env:
1313
CI: true

.github/workflows/publish-registry.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ env:
99
CI: true
1010
PNPM_CACHE_FOLDER: .pnpm-store
1111

12+
concurrency: publish-packages
13+
1214
jobs:
1315
publish-registry:
1416
runs-on: ubuntu-latest

.github/workflows/update-ts-version-tags.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ on:
1212
required: true
1313
default: main
1414
schedule:
15-
# https://crontab.guru/#5_8_*_*_1
16-
- cron: "5 8 * * 1"
15+
# https://crontab.guru/#5_6_*_*_0
16+
- cron: "5 6 * * 0"
17+
18+
concurrency: publish-packages
1719

1820
env:
1921
CI: true

0 commit comments

Comments
 (0)