Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/build-rd-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
endif()

- name: Upload environment script log
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: always()
with:
name: build-log-${{ matrix.config.os }}
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
run: cd export && cmake -E tar "cfv" ../${{ env.artifact }} --format=zip include libs

- name: Upload
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
path: |
${{ env.working-dir }}${{ matrix.config.SEP }}export${{ matrix.config.SEP }}**
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-rd-kt-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Build
run: ./gradlew build
- name: Upload Test Results
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: ${{ always() }}
with:
name: tests-log.${{ runner.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-rd-kt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Build
run: ./gradlew build
- name: Upload Test Results
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: ${{ always() }}
with:
name: tests-log.${{ runner.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-rd-net.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: cd rd-net && ./dotnet.cmd build --configuration Release --no-restore
- name: Tests
run: cd rd-net && ./dotnet.cmd test --no-restore --verbosity quiet --logger trx
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
if: failure()
with:
name: ${{ runner.os }}.test-results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-rd-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
run: cd export && cmake -E tar "cfv" ../${{ env.artifact }} --format=zip include libs

- name: Upload
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
path: |
${{ env.working-dir }}${{ matrix.config.SEP }}export${{ matrix.config.SEP }}**
Expand Down
Loading