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 e9893b5 commit da4522dCopy full SHA for da4522d
.github/workflows/release.yml
@@ -22,6 +22,7 @@ jobs:
22
- name: Setup Node.js
23
uses: actions/setup-node@v4
24
with:
25
+ registry-url: 'https://registry.npmjs.org' # to create .npmrc file with NODE_AUTH_TOKEN
26
node-version: 18
27
- name: Install Dependencies
28
run: yarn install
@@ -36,6 +37,7 @@ jobs:
36
37
- name: Publish next snapshot
38
if: steps.changesets.outputs.published != 'true'
39
run: |
40
+ git checkout master
41
yarn changeset version --snapshot next
42
yarn changeset publish --no-git-tag --snapshot --tag next
43
env:
0 commit comments