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/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: fastlane build_bundle_publish
- name: Archive build artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: build-artifacts
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: fastlane appstore_publish_deliver_lane
- name: Archive build artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: test-artifacts
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/kmp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: ./gradlew build
- name: Archive build-output artifacts
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: output-build-artifacts
path: |
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
script: ./gradlew :app:android:connectedCheck
- name: Archive ui-tests-output artifacts
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: output-ui-tests-artifacts-${{ matrix.api-level }}-${{ matrix.target }}
path: |
Expand Down
Loading