We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62f8a67 commit e39b550Copy full SHA for e39b550
.github/workflows/release.yml
@@ -19,18 +19,18 @@ jobs:
19
with:
20
node-version: "20"
21
registry-url: "https://registry.npmjs.org"
22
- cache: yarn
+ cache: npm
23
24
- name: Update npm to latest
25
run: npm install -g npm@latest
26
27
- name: Install dependencies
28
- run: yarn install
+ run: npm install
29
30
- name: Create Release Pull Request or Publish
31
uses: changesets/action@v1 # Must use latest version!
32
33
- publish: yarn release
+ publish: npm release
34
env:
35
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Keep this
36
NPM_TOKEN: "" # Forces OIDC authentication
0 commit comments