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.
2 parents 275a148 + 9ff6f7d commit fd1f7c6Copy full SHA for fd1f7c6
.github/workflows/release-beta.yml
@@ -17,7 +17,7 @@ jobs:
17
- uses: actions/checkout@v4
18
with:
19
fetch-depth: 0
20
- token: ${{ secrets.GITHUB_TOKEN }}
+ token: ${{ secrets.RELEASE_PAT }}
21
- uses: pnpm/action-setup@v4
22
- uses: actions/setup-node@v4
23
.github/workflows/release.yml
@@ -29,7 +29,9 @@ jobs:
29
- run: pnpm test
30
31
- name: Create .npmrc
32
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
+ run: |
33
+ echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
34
+ echo "@hypercerts-org:registry=https://registry.npmjs.org/" >> .npmrc
35
36
- name: Create Release Pull Request or Publish
37
id: changesets
0 commit comments