-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: cleanup names in GitHub Workflow
The names of these actions were generic, this just renames them so that they're a little easier to understand.
- Loading branch information
1 parent
711e523
commit 8b4a35f
Showing
1 changed file
with
7 additions
and
7 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,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"] | ||
} |