Skip to content

Commit

Permalink
ci(workspace): adds uploading of build logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Drischdaan committed Sep 11, 2024
1 parent 2dd82dd commit f01dd32
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
fail-fast: false
matrix:
build-configuration: [Debug, Development, Shipping]

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -34,3 +33,8 @@ jobs:
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild Renderwerk.sln /m /p:Configuration=${{matrix.build-configuration}} -fl -flp:logfile=Logs/Build-${{matrix.build-configuration}}.log
- name: Upload logs
uses: actions/upload-artifact@v4
with:
name: build-logs
path: Logs/Build-${{matrix.build-configuration}}.log

0 comments on commit f01dd32

Please sign in to comment.