We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4852adf commit 3f68de3Copy full SHA for 3f68de3
.github/workflows/npm-publish.yaml
@@ -14,10 +14,14 @@ jobs:
14
uses: actions/setup-node@v3
15
with:
16
node-version: 16
17
+ registry-url: https://registry.npmjs.org/
18
- name: Set version from tag
19
run: npm version ${{ github.event.release.tag_name }} --no-git-tag-version
- - run: npm ci
20
- - run: npm run build
21
- - run: npm publish --access public
+ - name: Install dependencies
+ run: npm ci
22
+ - name: Build
23
+ run: npm run build
24
+ - name: Publish
25
+ run: npm publish --access public
26
env:
27
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments