We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1708d7 commit eac4a22Copy full SHA for eac4a22
1 file changed
.github/workflows/build.yml
@@ -1,15 +1,17 @@
1
name: Build Extension
2
3
on:
4
- workflow_dispatch:
+ push:
5
+ tags:
6
+ - '*'
7
8
jobs:
9
10
build:
11
12
strategy:
13
matrix:
- configuration: [Debug, Release]
14
+ configuration: [Release]
15
16
runs-on: windows-latest
17
@@ -35,3 +37,12 @@ jobs:
35
37
Appx_Bundle_Platforms: x64
36
38
Appx_Package_Build_Mode: StoreUpload
39
Configuration: ${{ matrix.configuration }}
40
+
41
+ - name: Upload Artifact
42
+ uses: svenstaro/upload-release-action@v2
43
+ with:
44
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
45
+ file: bin\Release\net471\VirtualDesktopTimecodeServer.dll
46
+ asset_name: VirtualDesktopTimecodeServer.dll
47
+ tag: ${{ github.ref }}
48
+ overwrite: true
0 commit comments