From bc948f50fe23884b19244ad684f0f564484fc14a Mon Sep 17 00:00:00 2001 From: Brandon Teng Date: Wed, 22 Apr 2026 10:09:38 -0700 Subject: [PATCH 1/4] Update publish workflow to use latest actions and Node.js --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 986f3bb..2e83c73 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,14 +12,14 @@ jobs: publish-npm: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: - node-version: 20 + node-version: 24 registry-url: https://registry.npmjs.org - run: npm ci - run: npm test - run: npm version ${TAG_NAME} --git-tag-version=false --allow-same-version env: TAG_NAME: ${{ github.event.release.tag_name }} - - run: npm publish --access public --provenance + - run: NODE_AUTH_TOKEN="" npm publish --provenance From a30fbdbc0fa0317e57598d9c99b683db36c00e7d Mon Sep 17 00:00:00 2001 From: Brandon Teng Date: Wed, 22 Apr 2026 10:14:59 -0700 Subject: [PATCH 2/4] Update .github/workflows/publish.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2e83c73..c4f7c78 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: publish-npm: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v5 - uses: actions/setup-node@v6 with: node-version: 24 From 66a7d47381e95366a3db8952a60d589c040b22f5 Mon Sep 17 00:00:00 2001 From: Brandon Teng Date: Wed, 22 Apr 2026 10:15:25 -0700 Subject: [PATCH 3/4] Update .github/workflows/publish.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c4f7c78..0133ab5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-node@v6 with: - node-version: 24 + node-version: 20 registry-url: https://registry.npmjs.org - run: npm ci - run: npm test From 77f34ecf5f4408617ed4b0fb9fdd3221e6ba85b2 Mon Sep 17 00:00:00 2001 From: Brandon Teng Date: Wed, 22 Apr 2026 10:15:33 -0700 Subject: [PATCH 4/4] Update .github/workflows/publish.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0133ab5..23fda90 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,4 +22,6 @@ jobs: - run: npm version ${TAG_NAME} --git-tag-version=false --allow-same-version env: TAG_NAME: ${{ github.event.release.tag_name }} - - run: NODE_AUTH_TOKEN="" npm publish --provenance + - run: npm publish --provenance + env: + NODE_AUTH_TOKEN: ""