File tree Expand file tree Collapse file tree 3 files changed +30
-3
lines changed Expand file tree Collapse file tree 3 files changed +30
-3
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 @@ -6,7 +6,7 @@ Pod::Spec.new do |s|
6
6
s . name = 'RNSketchCanvas'
7
7
s . version = package [ 'version' ]
8
8
s . summary = package [ 'description' ]
9
- s . homepage = 'https://github.com/creambyemute /react-native-sketch-canvas'
9
+ s . homepage = 'https://github.com/sourcetoad /react-native-sketch-canvas'
10
10
s . license = package [ 'license' ]
11
11
s . authors = package [ 'author' ]
12
12
s . source = { :git => package [ 'repository' ] [ 'url' ] }
Original file line number Diff line number Diff line change 4
4
"type" : " git" ,
5
5
"url" : " https://github.com/sourcetoad/react-native-sketch-canvas"
6
6
},
7
- "version" : " 1.0.1 " ,
7
+ "version" : " 1.0.2 " ,
8
8
"description" : " react-native-sketch-canvas allows you to draw / sketch on both iOS and Android devices and sync the drawing data between users. Of course you can save as image." ,
9
9
"author" : " Terry Lin" ,
10
10
"main" : " lib/commonjs/index" ,
17
17
" lib" ,
18
18
" android" ,
19
19
" ios" ,
20
- " cpp" ,
21
20
" RNSketchCanvas.podspec" ,
22
21
" !lib/typescript/example" ,
23
22
" !android/build" ,
You can’t perform that action at this time.
0 commit comments