File tree 2 files changed +29
-1
lines changed
2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish to NPM
2
+ on :
3
+ release :
4
+ types : [published]
5
+
6
+ jobs :
7
+ publish :
8
+ environment : deploy
9
+ runs-on : ubuntu-latest
10
+
11
+ name : Publish
12
+ steps :
13
+ - uses : actions/checkout@v3
14
+
15
+ - name : Setup node
16
+ uses : actions/setup-node@v3
17
+ with :
18
+ node-version : 14
19
+ cache : ' yarn'
20
+ registry-url : ' https://registry.npmjs.org'
21
+
22
+ - name : Yarn Install
23
+ run : yarn install --network-concurrency 1
24
+
25
+ - name : Publish (NPM)
26
+ run : npm publish --access public
27
+ env :
28
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-idscan-sdk" ,
3
- "version" : " 0.5.0 " ,
3
+ "version" : " 0.5.1 " ,
4
4
"description" : " SDK for IDScan.net in React Native" ,
5
5
"main" : " lib/commonjs/index" ,
6
6
"module" : " lib/module/index" ,
You can’t perform that action at this time.
0 commit comments