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 69dbb5f commit 329b76eCopy full SHA for 329b76e
.github/main.workflow
@@ -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
13
+ needs = ["Npm Install"]
14
+ args = "publish -- -p \"$VS_ACCESS_KEY\""
15
+ secrets = ["VS_ACCESS_KEY"]
16
0 commit comments