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
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: ./gradlew detekt
- name: Upload debug APKs
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: debug-apks
path: |
Expand All @@ -49,7 +49,7 @@ jobs:
retention-days: 14
- name: Upload lint reports
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: lint-reports
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Build release APKs
run: ./gradlew :androidApp:assembleRelease :wearApp:assembleRelease
- name: Upload release APKs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-apks
path: |
Expand Down
Loading