Skip to content

Commit eac4a22

Browse files
+1
1 parent c1708d7 commit eac4a22

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
name: Build Extension
22

33
on:
4-
workflow_dispatch:
4+
push:
5+
tags:
6+
- '*'
57

68
jobs:
79

810
build:
911

1012
strategy:
1113
matrix:
12-
configuration: [Debug, Release]
14+
configuration: [Release]
1315

1416
runs-on: windows-latest
1517

@@ -35,3 +37,12 @@ jobs:
3537
Appx_Bundle_Platforms: x64
3638
Appx_Package_Build_Mode: StoreUpload
3739
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

Comments
 (0)