Skip to content

Commit 13bac25

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents 099097b + 47e3924 commit 13bac25

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

.github/workflows/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Publish Package to npmjs
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@map-component/tmap-types",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"main": "index.d.js",
55
"repository": "",
66
"author": "",
77
"license": "MIT"
8-
}
8+
}

0 commit comments

Comments
 (0)