We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cdc1920 + 7c0d04c commit b3a794bCopy full SHA for b3a794b
.github/workflows/main.yaml
@@ -5,7 +5,7 @@ jobs:
5
runs-on: ubuntu-latest
6
strategy:
7
matrix:
8
- node-version: [10.x]
+ node-version: [12.x]
9
10
steps:
11
- uses: actions/checkout@v1
@@ -33,3 +33,21 @@ jobs:
33
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
35
run: npm run semantic-release
36
+ - uses: actions/upload-artifact@master
37
+ with:
38
+ name: build-artifact
39
+ path: lib
40
+
41
+ publish:
42
+ runs-on: ubuntu-latest
43
+ needs: build
44
+ steps:
45
+ - uses: actions/checkout@master
46
+ - uses: actions/download-artifact@master
47
48
49
50
+ - uses: bvkimball/branch-vars@1.0.1
51
+ - env:
52
+ API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
53
+ run: sh snapshot-publish
0 commit comments