Skip to content

Commit 20ab7b7

Browse files
committed
test
1 parent dc9390b commit 20ab7b7

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

.github/workflows/publish.yaml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@ name: Publish
22

33
on:
44
push:
5-
tags:
6-
- v*
5+
branches: [testbranch]
76

87
jobs:
98
build:
109
runs-on: ubuntu-latest
1110
steps:
12-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v2
1312
with:
1413
ref: testbranch
1514

@@ -18,15 +17,15 @@ jobs:
1817
path: '**/node_modules'
1918
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
2019

21-
# - name: Install packages
22-
# run: yarn
20+
- name: Install packages
21+
run: yarn
2322

24-
# - name: Create Build
25-
# run: yarn build
23+
- name: Create Build
24+
run: yarn build
2625

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
3130

3231

0 commit comments

Comments
 (0)