Skip to content

Commit 92a2de9

Browse files
authored
Merge pull request #898 from TypeStrong/example-for-mcolyer
example of filter issue for @mcolyer
2 parents ba6f5c4 + ff9bc37 commit 92a2de9

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/main.workflow

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
workflow "build, test and publish on release" {
22
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"
54
}
65

76
# install with yarn
@@ -34,10 +33,9 @@ action "check for new tag" {
3433
args = "tag"
3534
}
3635

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-
#}
36+
action "publish" {
37+
needs = "check for new tag"
38+
uses = "actions/[email protected]"
39+
args = "publish"
40+
secrets = ["NPM_AUTH_TOKEN"]
41+
}

0 commit comments

Comments
 (0)