Skip to content

Commit 5817e40

Browse files
committed
Merge branch 'main' into fix/remove-canary
2 parents 90a0539 + 3cbcf4c commit 5817e40

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/actions/setup/action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: 'Setup repo and install dependencies'
33

44
runs:
55
using: 'composite'
6-
steps:
6+
steps:
77
- name: Setup pnpm
88
uses: pnpm/action-setup@v4
99

@@ -13,6 +13,10 @@ runs:
1313
node-version-file: '.nvmrc'
1414
cache: 'pnpm'
1515

16+
- name: Update npm
17+
shell: bash
18+
run: npm install -g [email protected]
19+
1620
- name: Install Dependencies
1721
shell: bash
1822
run: pnpm install --frozen-lockfile

.github/workflows/cd.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ jobs:
2424
- name: Setup Repository
2525
uses: ./.github/actions/setup
2626

27-
- name: Configure NPM Auth Token
28-
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NODE_AUTH_TOKEN }}" >> ~/.npmrc
29-
3027
- name: Create Snapshot
3128
id: create_snapshot
3229
run: pnpm changeset version --snapshot canary || echo "No unreleased changesets found"

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ jobs:
2121
- name: Setup
2222
uses: ./.github/actions/setup
2323

24-
- name: Configure NPM Auth Token
25-
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NODE_AUTH_TOKEN }}" >> ~/.npmrc
26-
2724
- name: Create Release Pull Request
2825
uses: changesets/action@v1
2926
with:

0 commit comments

Comments
 (0)