Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
massivemadness committed Feb 3, 2025
1 parent a4b4e9d commit e57dff6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'true'

Expand All @@ -23,7 +23,7 @@ jobs:
echo "KEY_PASSWORD=${{ secrets.KEY_PASSWORD }}" >> local.properties
- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
Expand All @@ -42,13 +42,13 @@ jobs:
run: ./gradlew ktlintCheck

- name: Upload Debug APK (Google Play)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Google Play App (Debug)
path: ./app/build/outputs/apk/googlePlay/debug/app-googlePlay-debug.apk

- name: Upload Debug APK (F-Droid)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: F-Droid App (Debug)
path: ./app/build/outputs/apk/fdroid/debug/app-fdroid-debug.apk

0 comments on commit e57dff6

Please sign in to comment.