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 e06cdea commit cd3ce1eCopy full SHA for cd3ce1e
.github/workflows/publish.yml
@@ -32,7 +32,13 @@ jobs:
32
registry-url: 'https://npm.pkg.github.com'
33
scope: '@pedroab0'
34
- run: npm ci
35
- - run: npm pkg set name="@pedroab0/swr-catalyst"
36
- - run: npm publish
+ - name: Configure for GitHub Packages
+ run: |
37
+ npm pkg set name="@pedroab0/swr-catalyst"
38
+ echo "Checking .npmrc location: $NPM_CONFIG_USERCONFIG"
39
+ cat $NPM_CONFIG_USERCONFIG
40
+ echo "Modified package.json name:"
41
+ npm pkg get name
42
+ - run: npm publish --verbose
43
env:
44
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments