We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7adceaa commit ba63fffCopy full SHA for ba63fff
1 file changed
.github/workflows/build-deploy.yml
@@ -6,7 +6,7 @@ on:
6
tags:
7
- v*.*.*
8
jobs:
9
- build-deploy:
+ build:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
@@ -24,6 +24,17 @@ jobs:
24
name: commit-extension-${{ env.VERSION }}
25
path: ./*.vsix
26
27
+ # Create a release with the version number
28
+ deploy:
29
+ needs: build-deploy
30
+ runs-on: ubuntu-latest
31
+ steps:
32
+ # Download the VSIX file from the artifact
33
+ - uses: actions/download-artifact@v2
34
+ with:
35
+ name: commit-extension-${{ env.VERSION }}
36
+ path: ./
37
+
38
# Upload the VSIX file to the Github release
39
- name: Create Release
40
uses: softprops/action-gh-release@v1
0 commit comments