From 8b4a35ffa4727260ded35506392f13c67bf9804a Mon Sep 17 00:00:00 2001 From: Chase Adams Date: Sun, 19 May 2019 06:53:24 -0700 Subject: [PATCH] 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. --- .github/main.workflow | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 7582a85..3d68093 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -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"] }