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 1372faa commit 351c638Copy full SHA for 351c638
.github/workflows/_build.yaml
@@ -1,7 +1,12 @@
1
name: "Base build"
2
3
-on: workflow_call
4
-
+on:
+ workflow_call:
5
+ outputs:
6
+ version:
7
+ description: 'Version of the build'
8
+ value: ${{ jobs.build.outputs.version) }}
9
+
10
jobs:
11
build:
12
outputs:
.github/workflows/publish.yaml
@@ -43,4 +43,14 @@ jobs:
43
extension-file: '${{ github.event.repository.name }}.vsix'
44
publish-manifest-file: 'vs-publish.json'
45
personal-access-code: ${{ secrets.VS_PUBLISHER_ACCESS_TOKEN }}
46
47
+ - name: Tag and Release
48
+ id: tag_release
49
+ uses: softprops/action-gh-release@v1
50
+ with:
51
+ body: Release ${{ env.VERSION }}
52
+ tag_name: ${{ env.VERSION }}
53
+ generate_release_notes: true
54
+ files: |
55
+ **/*.vsix
56
0 commit comments