We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91bb90e commit 8a9e750Copy full SHA for 8a9e750
.github/workflows/build.yml
@@ -23,6 +23,15 @@ jobs:
23
run: cmake -T ${{ matrix.toolset }} -A Win32 -B build
24
- name: Build
25
run: cmake --build build -j $env:NUMBER_OF_PROCESSORS --config ${{ matrix.configuration }}
26
+ - name: Publish Windows Release
27
+ working-directory: build
28
+ uses: actions/upload-artifact@v4
29
+ with:
30
+ name: Aura-Client-Win32-Release
31
+ path: |
32
+ SteamRelease/client.dll
33
+ env:
34
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35
36
build-linux-gcc:
37
name: build-linux (gcc-${{ matrix.gcc-ver }}, ${{ matrix.configuration }})
0 commit comments