File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,13 @@ name: Publish
2
2
3
3
on :
4
4
push :
5
- tags :
6
- - v*
5
+ branches : [testbranch]
7
6
8
7
jobs :
9
8
build :
10
9
runs-on : ubuntu-latest
11
10
steps :
12
- - uses : actions/checkout@v1
11
+ - uses : actions/checkout@v2
13
12
with :
14
13
ref : testbranch
15
14
@@ -18,15 +17,15 @@ jobs:
18
17
path : ' **/node_modules'
19
18
key : ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
20
19
21
- # - name: Install packages
22
- # run: yarn
20
+ - name : Install packages
21
+ run : yarn
23
22
24
- # - name: Create Build
25
- # run: yarn build
23
+ - name : Create Build
24
+ run : yarn build
26
25
27
- # - uses: JS-DevTools/npm-publish@v1
28
- # with:
29
- # token: ${{ secrets.NPM_TOKEN }}
30
- # dryrun: true
26
+ - uses : JS-DevTools/npm-publish@v1
27
+ with :
28
+ token : ${{ secrets.NPM_TOKEN }}
29
+ dryrun : true
31
30
32
31
You can’t perform that action at this time.
0 commit comments