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 bba1e4a commit 8118be5Copy full SHA for 8118be5
.github/workflows/release.yml
@@ -0,0 +1,32 @@
1
+name: Release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "*.*.*"
7
8
+env:
9
+ BUILD_TYPE: RelWithDebInfo
10
11
+jobs:
12
+ build:
13
+ runs-on: windows-latest
14
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
+ with:
19
+ submodules: 'true'
20
21
+ - name: Configure CMake
22
+ run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
23
24
+ - name: Build
25
+ run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
26
27
+ - name: Release
28
+ uses: softprops/action-gh-release@v2
29
30
+ files: |
31
+ ${{github.workspace}}/build/MStarPlayer_artefacts/${{env.BUILD_TYPE}}/MStarPlayer.exe
32
+ ${{github.workspace}}/build/MStarPlayer_artefacts/${{env.BUILD_TYPE}}/MStarPlayer.pdb
0 commit comments