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 2506e97 + d60ca43 commit 6ed776cCopy full SHA for 6ed776c
.github/workflows/npm-publish.yml
@@ -3,27 +3,28 @@ name: Publish to NPM
3
on:
4
release:
5
types: [created]
6
+ workflow_dispatch:
7
8
jobs:
9
publish:
10
runs-on: ubuntu-latest
11
steps:
12
- name: Checkout
13
uses: actions/checkout@v4
-
14
+
15
- name: Setup Node.js
16
uses: actions/setup-node@v4
17
with:
18
node-version: 18
- registry-url: 'https://registry.npmjs.org'
19
+ registry-url: "https://registry.npmjs.org"
20
21
- name: Install dependencies
22
run: npm ci
23
24
- name: Build
25
run: npm run build
26
27
- name: Publish to NPM
28
run: npm publish
29
env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
30
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments