Skip to content

Commit 3559ff6

Browse files
committed
remove filter step from github workflow
1 parent 5d92612 commit 3559ff6

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/main.workflow

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,14 @@ workflow "Deploy in VS Market Place" {
33
resolves = ["Publish"]
44
}
55

6-
action "Npm Install" {
6+
action "npm install" {
77
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
88
args = ["install", "--unsafe-perm"]
99
}
1010

11-
action "Master" {
12-
uses = "actions/bin/filter@master"
13-
args = "branch master"
14-
needs = ["Npm Install"]
15-
}
16-
1711
action "Publish" {
1812
uses = "lannonbr/vsce-action@master"
19-
needs = ["Master"]
13+
needs = ["npm install"]
2014
args = "publish -p $VS_ACCESS_KEY"
2115
secrets = ["VS_ACCESS_KEY"]
2216
}

0 commit comments

Comments
 (0)