Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/project-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Build documentation
run: ./tools/build-docs.sh
- name: Upload documentation
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: documentation
path: "build/html"
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
export ENABLE_CPPCHECK=1
./tools/build-cmake-target.sh ${{ matrix.compiler }}-release cplusplus_training_project
- name: Upload application
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: application-${{ matrix.compiler }}
path: "build/${{ matrix.compiler }}-release/bin/cplusplus_training_project"
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Run tests
run: ./tools/run-test.sh build/${{ matrix.compiler }}-coverage/bin/calculate_test build/${{ matrix.compiler }}
- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-results-${{ matrix.compiler }}
path: "build/${{ matrix.compiler }}/*.xml"
Expand Down