File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 1
1
workflow "build, test and publish on release" {
2
2
on = " push"
3
- # resolves = "publish" - commented until this issue is resolved: https://github.com/actions/bin/issues/13
4
- resolves = " check for new tag"
3
+ resolves = " publish"
5
4
}
6
5
7
6
# install with yarn
@@ -34,10 +33,9 @@ action "check for new tag" {
34
33
args = " tag"
35
34
}
36
35
37
- # publish with npm - commented until this issue is resolved: https://github.com/actions/bin/issues/13
38
- # action "publish" {
39
- # needs = "check for new tag"
40
- # uses = "actions/npm@1.0.0"
41
- # args = "publish"
42
- # secrets = ["NPM_AUTH_TOKEN"]
43
- # }
36
+ action "publish" {
37
+ needs = " check for new tag"
38
+ uses = " actions/npm@1.0.0"
39
+ args = " publish"
40
+ secrets = [" NPM_AUTH_TOKEN" ]
41
+ }
You can’t perform that action at this time.
0 commit comments