File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 23
23
uses : coverallsapp/github-action@master
24
24
with :
25
25
github-token : ${{ secrets.GITHUB_TOKEN }}
26
- - uses : actions/upload-artifacts@master
26
+ - uses : actions/upload-artifact@v3
27
27
with :
28
28
name : bundle
29
29
path : pkg
41
41
release :
42
42
name : Release
43
43
runs-on : ubuntu-latest
44
- if : github.ref === 'refs/heads/main'
44
+ if : github.ref == 'refs/heads/main'
45
45
steps :
46
46
- uses : actions/checkout@v3
47
47
with :
@@ -50,12 +50,14 @@ jobs:
50
50
uses : actions/setup-node@v3
51
51
with :
52
52
node-version : 16
53
+ - name : Install Dependencies
53
54
run : npm ci
54
- - name : Release
55
- uses : actions/download-artifact@master
55
+ - name : Download Artifacts
56
+ uses : actions/download-artifact@v3
56
57
with :
57
58
name : bundle
58
59
path : pkg
60
+ - name : Release
59
61
env :
60
62
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
61
63
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments