From da4beaa7464a20e779661f9ec4bc10473ec778a3 Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Mon, 6 Jan 2025 11:29:50 -0800 Subject: [PATCH] Do not concurrently publish to npm (#1129) --- .github/workflows/publish-packages.yml | 2 +- .github/workflows/publish-registry.yml | 2 ++ .github/workflows/update-ts-version-tags.yml | 6 ++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-packages.yml b/.github/workflows/publish-packages.yml index 1538a85a68..e31954b494 100644 --- a/.github/workflows/publish-packages.yml +++ b/.github/workflows/publish-packages.yml @@ -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 diff --git a/.github/workflows/publish-registry.yml b/.github/workflows/publish-registry.yml index bf859e46da..38603585bc 100644 --- a/.github/workflows/publish-registry.yml +++ b/.github/workflows/publish-registry.yml @@ -9,6 +9,8 @@ env: CI: true PNPM_CACHE_FOLDER: .pnpm-store +concurrency: publish-packages + jobs: publish-registry: runs-on: ubuntu-latest diff --git a/.github/workflows/update-ts-version-tags.yml b/.github/workflows/update-ts-version-tags.yml index 388b35fbeb..33324ba89f 100644 --- a/.github/workflows/update-ts-version-tags.yml +++ b/.github/workflows/update-ts-version-tags.yml @@ -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