We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96de9ad commit 99f3832Copy full SHA for 99f3832
1 file changed
.github/workflows/vsce-publish.yml
@@ -2,9 +2,9 @@ name: NodeJS with Grunt
2
3
on:
4
push:
5
- #tags:
6
- # - '*'
7
- branches: ["master"]
+ tags:
+ - '*'
+ #branches: ["master"]
8
9
jobs:
10
publish:
@@ -33,8 +33,9 @@ jobs:
33
run: npm run package
34
working-directory: ${{env.cwd}}
35
36
- - name: Upload a Build Artifact
37
- uses: actions/upload-artifact@v2.2.4
+ - name: Create release
+ uses: ncipollo/release-action@v1
38
with:
39
- # A file, directory or wildcard pattern that describes what to upload
40
- path: ${{env.cwd}}/vsix/*.vsix
+ artifacts: ${{env.cwd}}/vsix/*.vsix
+ token: ${{secrets.GH_TOKEN}}
41
+ draft: true
0 commit comments