Skip to content

Commit

Permalink
Create artifacts after every CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
ffes committed Dec 1, 2023
1 parent 7e92f7d commit 2ca04b1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,10 @@ jobs:

- name: Run MSBuild
run: msbuild RebootAt.vcxproj /m /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}"

- name: Archive artifacts for x64
if: matrix.build_platform == 'x64'
uses: actions/upload-artifact@v3
with:
name: rebootat_x64
path: ${{ matrix.build_platform }}/${{ matrix.build_configuration }}/RebootAt.exe

0 comments on commit 2ca04b1

Please sign in to comment.