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 099097b + 47e3924 commit 13bac25Copy full SHA for 13bac25
.github/workflows/main.yml
@@ -0,0 +1,22 @@
1
+name: Publish Package to npmjs
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ # Setup .npmrc file to publish to npm
15
+ - uses: actions/setup-node@v3
16
+ with:
17
+ node-version: '16.x'
18
+ registry-url: 'https://registry.npmjs.org'
19
+ - run: npm ci
20
+ - run: npm publish
21
+ env:
22
+ NODE_AUTH_TOKEN: fe38b38d-d305-4173-b643-0ada4ec0818a
package.json
@@ -1,8 +1,8 @@
{
"name": "@map-component/tmap-types",
- "version": "0.1.1",
+ "version": "0.1.2",
"main": "index.d.js",
"repository": "",
"author": "",
"license": "MIT"
-}
+}
0 commit comments