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 b50c85c commit fa88241Copy full SHA for fa88241
.github/workflows/ci.yml
@@ -46,14 +46,10 @@ jobs:
46
- name: Build package
47
run: bun run build
48
49
- - name: Setup .npmrc file for publishing
50
- uses: actions/setup-node@v4
51
- with:
52
- node-version: '20'
53
- registry-url: 'https://registry.npmjs.org'
54
- scope: '@dolphfi_'
55
- env:
56
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+ - name: Create .npmrc file
+ run: |
+ echo "@dolphfi_:registry=https://registry.npmjs.org/" > ./.npmrc
+ echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ./.npmrc
57
58
- name: Publish to npm
59
run: bunx publint && bun publish --no-git-checks
0 commit comments