We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8553673 commit cdd71cdCopy full SHA for cdd71cd
1 file changed
.github/workflows/DeployManual.yml
@@ -12,10 +12,15 @@ jobs:
12
uses: actions/setup-node@v3
13
with:
14
node-version: 18
15
- registry-url: "https://registry.npmjs.org"
16
- - name: Install dependencies and build 🔧
+ registry-url: 'https://registry.npmjs.org'
+ - name: Install dependencies and build
17
run: yarn && yarn prepack
18
- - name: Publish package on NPM 📦
+ - name: Display file
19
+ run: |
20
+ cat /home/runner/work/_temp/.npmrc
21
+ cat $NPM_CONFIG_USERCONFIG
22
+ - name: Publish package on NPM
23
run: yarn publish
24
env:
25
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
26
+ NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments