-
-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #898 from TypeStrong/example-for-mcolyer
example of filter issue for @mcolyer
- Loading branch information
Showing
1 changed file
with
7 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
workflow "build, test and publish on release" { | ||
on = "push" | ||
# resolves = "publish" - commented until this issue is resolved: https://github.com/actions/bin/issues/13 | ||
resolves = "check for new tag" | ||
resolves = "publish" | ||
} | ||
|
||
# install with yarn | ||
|
@@ -34,10 +33,9 @@ action "check for new tag" { | |
args = "tag" | ||
} | ||
|
||
# publish with npm - commented until this issue is resolved: https://github.com/actions/bin/issues/13 | ||
#action "publish" { | ||
# needs = "check for new tag" | ||
# uses = "actions/[email protected]" | ||
# args = "publish" | ||
# secrets = ["NPM_AUTH_TOKEN"] | ||
#} | ||
action "publish" { | ||
needs = "check for new tag" | ||
uses = "actions/[email protected]" | ||
args = "publish" | ||
secrets = ["NPM_AUTH_TOKEN"] | ||
} |