We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d92612 commit 3559ff6Copy full SHA for 3559ff6
.github/main.workflow
@@ -3,20 +3,14 @@ workflow "Deploy in VS Market Place" {
3
resolves = ["Publish"]
4
}
5
6
-action "Npm Install" {
+action "npm install" {
7
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
8
args = ["install", "--unsafe-perm"]
9
10
11
-action "Master" {
12
- uses = "actions/bin/filter@master"
13
- args = "branch master"
14
- needs = ["Npm Install"]
15
-}
16
-
17
action "Publish" {
18
uses = "lannonbr/vsce-action@master"
19
- needs = ["Master"]
+ needs = ["npm install"]
20
args = "publish -p $VS_ACCESS_KEY"
21
secrets = ["VS_ACCESS_KEY"]
22
0 commit comments