File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 35
35
- name : Setup
36
36
uses : ./.github/actions/setup
37
37
38
- # - name: Run unit tests
39
- # run: yarn test --maxWorkers=2 --coverage
38
+ - name : Run unit tests
39
+ run : yarn test --maxWorkers=2 --coverage
40
40
41
41
build-library :
42
42
runs-on : ubuntu-latest
50
50
- name : Build package
51
51
run : yarn prepare
52
52
53
- build-web :
53
+ deploy :
54
54
runs-on : ubuntu-latest
55
55
steps :
56
56
- name : Checkout
59
59
- name : Setup
60
60
uses : ./.github/actions/setup
61
61
62
- - name : Build example for Web
63
- run : |
64
- yarn example expo export --platform web
62
+ - name : Initialize the NPM config
63
+ run : npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
64
+ env :
65
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
66
+
67
+ - name : Deploy package to NPM
68
+ run : yarn release --ci
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ node_modules/
54
54
npm-debug.log
55
55
yarn-debug.log
56
56
yarn-error.log
57
+ .npmrc
57
58
58
59
# BUCK
59
60
buck-out /
You can’t perform that action at this time.
0 commit comments