We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc9390b commit 20ab7b7Copy full SHA for 20ab7b7
1 file changed
.github/workflows/publish.yaml
@@ -2,14 +2,13 @@ name: Publish
2
3
on:
4
push:
5
- tags:
6
- - v*
+ branches: [testbranch]
7
8
jobs:
9
build:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v2
13
with:
14
ref: testbranch
15
@@ -18,15 +17,15 @@ jobs:
18
17
path: '**/node_modules'
19
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
20
21
- # - name: Install packages
22
- # run: yarn
+ - name: Install packages
+ run: yarn
23
24
- # - name: Create Build
25
- # run: yarn build
+ - name: Create Build
+ run: yarn build
26
27
- # - uses: JS-DevTools/npm-publish@v1
28
- # with:
29
- # token: ${{ secrets.NPM_TOKEN }}
30
- # dryrun: true
+ - uses: JS-DevTools/npm-publish@v1
+ with:
+ token: ${{ secrets.NPM_TOKEN }}
+ dryrun: true
31
32
0 commit comments