Skip to content

Commit e39b550

Browse files
committed
use npm, not yarn
1 parent 62f8a67 commit e39b550

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ jobs:
1919
with:
2020
node-version: "20"
2121
registry-url: "https://registry.npmjs.org"
22-
cache: yarn
22+
cache: npm
2323

2424
- name: Update npm to latest
2525
run: npm install -g npm@latest
2626

2727
- name: Install dependencies
28-
run: yarn install
28+
run: npm install
2929

3030
- name: Create Release Pull Request or Publish
3131
uses: changesets/action@v1 # Must use latest version!
3232
with:
33-
publish: yarn release
33+
publish: npm release
3434
env:
3535
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Keep this
3636
NPM_TOKEN: "" # Forces OIDC authentication

0 commit comments

Comments
 (0)