Skip to content

Commit d985eb3

Browse files
JimmyDaddyJimmyDaddy
andauthored
ci: v0.6.3 (#82)
* feat: color support alpha fix #61 * ci: v0.6.3 Co-authored-by: JimmyDaddy <[email protected]>
1 parent cc2bd5a commit d985eb3

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/workflows/npm-publish.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: publish npm Package
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
publish-npm:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v2
13+
with:
14+
node-version: 14
15+
registry-url: https://registry.npmjs.org/
16+
- run: npm install
17+
- run: npm run tsc
18+
- run: npm publish
19+
env:
20+
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
21+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-image-marker",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"description": "mark image on both Android and iOS",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)