We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ba6f5c4 + ff9bc37 commit 92a2de9Copy full SHA for 92a2de9
.github/main.workflow
@@ -1,7 +1,6 @@
1
workflow "build, test and publish on release" {
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"
+ resolves = "publish"
5
}
6
7
# install with yarn
@@ -34,10 +33,9 @@ action "check for new tag" {
34
33
args = "tag"
35
36
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/[email protected]"
41
-# args = "publish"
42
-# secrets = ["NPM_AUTH_TOKEN"]
43
-#}
+action "publish" {
+ needs = "check for new tag"
+ uses = "actions/[email protected]"
+ args = "publish"
+ secrets = ["NPM_AUTH_TOKEN"]
+}
0 commit comments