Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/report-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
git push

- name: Upload Aggregated Status
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: aggregated-status
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/workflow-mobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
-F "file=@examples/mobile/bevy_mobile_example.ipa" \
-F "custom_id=$GITHUB_RUN_ID"

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: app.ipa
path: examples/mobile/bevy_mobile_example.ipa
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
-F "file=@examples/mobile/android_example/app/build/outputs/apk/debug/app-debug.apk" \
-F "custom_id=$GITHUB_RUN_ID"

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: app.apk
path: examples/mobile/android_example/app/build/outputs/apk/debug/app-debug.apk
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:

- name: Save screenshots
if: ${{ always() }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: screenshots-${{ matrix.device }}-${{ matrix.os_version }}
path: .github/start-mobile-example/*.png
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
cat pixeleagle-mobile.json

- name: Upload Pixel Eagle status
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: pixeleagle-mobile
path: pixeleagle-mobile.json
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/workflow-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,13 +223,13 @@ jobs:
echo "has_success=$(![String]::IsNullOrWhiteSpace((Get-content example-showcase-reports/successes)))" | Out-File -FilePath $env:GITHUB_OUTPUT -Append

- name: Upload Screenshots
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: screenshots-${{ runner.os }}-${{ matrix.page }}
path: screenshots

- name: Upload Status
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: status-${{ runner.os }}-${{ matrix.page }}
path: |
Expand Down Expand Up @@ -308,7 +308,7 @@ jobs:
echo "created run $run"

- name: Upload Pixel Eagle status
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: pixeleagle-${{ matrix.os }}
path: pixeleagle-${{ matrix.os }}.json
2 changes: 1 addition & 1 deletion .github/workflows/workflow-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
cargo run -p build-wasm-example -- --browsers ${{ matrix.browser }} --api ${{ matrix.api }} --frames 25 --test 2d_shapes testbed_ui bloom_2d atmospheric_fog pbr split_screen

- name: Save screenshots
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: screenshots-wasm-${{ matrix.browser }}-${{ matrix.api }}-${{ runner.os }}
path: .github/start-wasm-example/screenshot-*.png
Expand Down