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 1a3856d + 049edad commit 70c488dCopy full SHA for 70c488d
.github/workflows/publish.yaml
@@ -0,0 +1,19 @@
1
+name: Publish Package to npmjs
2
+on:
3
+ release:
4
+ types: [created]
5
+
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ # Setup .npmrc file to publish to npm
12
+ - uses: actions/setup-node@v3
13
+ with:
14
+ node-version: '16.x'
15
+ registry-url: 'https://registry.npmjs.org'
16
+ - run: npm ci
17
+ - run: npm publish
18
+ env:
19
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package.json
@@ -1,6 +1,6 @@
{
"name": "@funktechno/little-mermaid-2-the-sql",
- "version": "0.0.3",
+ "version": "0.0.4",
"description": "",
"main": "./lib/index.js",
"engines": {
0 commit comments