Skip to content

Commit 329b76e

Browse files
authored
add github actions
1 parent 69dbb5f commit 329b76e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/main.workflow

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
workflow "Deploy in VS Market Place" {
2+
on = "release"
3+
resolves = ["Publish"]
4+
}
5+
6+
action "Npm Install" {
7+
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
8+
args = "install"
9+
}
10+
11+
action "Publish" {
12+
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
13+
needs = ["Npm Install"]
14+
args = "publish -- -p \"$VS_ACCESS_KEY\""
15+
secrets = ["VS_ACCESS_KEY"]
16+
}

0 commit comments

Comments
 (0)