Skip to content

Commit

Permalink
add tag-filter
Browse files Browse the repository at this point in the history
  • Loading branch information
lamdav committed Jun 2, 2019
1 parent e36f7e6 commit 1c5b1e1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/main.workflow
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,14 @@ action "pytest" {
uses = "./actions/pytest"
}

action "pypi" {
action "tag-filter" {
needs = "pytest"
uses = "actions/bin/filter@master"
args = "tag"
}

action "pypi" {
needs = "tag-filter"
uses = "./actions/pypi"
secrets = ["TWINE_USERNAME", "TWINE_PASSWORD"]
}
Expand Down

0 comments on commit 1c5b1e1

Please # to comment.