Skip to content

Commit

Permalink
chore: cleanup names in GitHub Workflow
Browse files Browse the repository at this point in the history
The names of these actions were generic, this just renames them so that
they're a little easier to understand.
  • Loading branch information
chaseadamsio committed May 20, 2019
1 parent 711e523 commit 8b4a35f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
workflow "Build, Test & Publish" {
workflow "Check, Build, Release & Publish" {
on = "push"
resolves = ["Publish"]
resolves = ["Publish to VS Marketplac"]
}

action "Check Code" {
uses ="./.github/actions/check"
}

action "Master" {
action "Is Master Branch" {
needs = "Check Code"
uses = "actions/bin/filter@master"
args = "branch master"
}

action "Release" {
needs = "Master"
action "Generate Release" {
needs = "Is Master Branch"
uses = "./.github/actions/release"
secrets = ["GITHUB_TOKEN"]
}

action "Publish" {
needs = "Release"
action "Publish to VS Marketplace" {
needs = "Generate Release"
uses = "./.github/actions/publish"
secrets = ["VSCE_TOKEN", "GITHUB_TOKEN"]
}

0 comments on commit 8b4a35f

Please sign in to comment.