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.
1 parent cc2bd5a commit d985eb3Copy full SHA for d985eb3
.github/workflows/npm-publish.yml
@@ -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
@@ -1,6 +1,6 @@
{
"name": "react-native-image-marker",
- "version": "0.6.2",
+ "version": "0.6.3",
"description": "mark image on both Android and iOS",
"main": "index.js",
"scripts": {
0 commit comments