Skip to content

Commit ba63fff

Browse files
committed
main - test run github action
1 parent 7adceaa commit ba63fff

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/build-deploy.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
tags:
77
- v*.*.*
88
jobs:
9-
build-deploy:
9+
build:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2
@@ -24,6 +24,17 @@ jobs:
2424
name: commit-extension-${{ env.VERSION }}
2525
path: ./*.vsix
2626

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+
2738
# Upload the VSIX file to the Github release
2839
- name: Create Release
2940
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)