From 6b4a2dd37617073d44d3a344d8068ac4aafdbcdb Mon Sep 17 00:00:00 2001 From: Amrit Date: Fri, 19 Jun 2026 17:00:11 -0700 Subject: [PATCH 1/2] fix: update deploy --- .github/workflows/ci.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 10da471..0469ca7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,6 +8,7 @@ on: jobs: build: runs-on: ubuntu-latest + # environment: production concurrency: group: npm-publish cancel-in-progress: false @@ -16,14 +17,10 @@ jobs: id-token: write steps: - uses: actions/checkout@v4 - # Setup .npmrc file to publish to npm - uses: actions/setup-node@v4 with: - node-version: '20.x' - registry-url: 'https://registry.npmjs.org' + node-version: "24.x" - run: npm install - run: npm run prepublishOnly - run: npm publish --access public if: github.event_name != 'pull_request' - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From acf1486e6d800b6260b1c4da8631c6c79d500785 Mon Sep 17 00:00:00 2001 From: Amrit Date: Fri, 19 Jun 2026 17:28:23 -0700 Subject: [PATCH 2/2] chore: added back prod --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0469ca7..53b42e8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ on: jobs: build: runs-on: ubuntu-latest - # environment: production + environment: production concurrency: group: npm-publish cancel-in-progress: false