actions: fix artifacts
Fix an inccorrectly specific build command and path for creating artifacts.
This commit is contained in:
parent
affe5c482b
commit
b0f38fc5db
1 changed files with 3 additions and 3 deletions
6
.github/workflows/android.yml
vendored
6
.github/workflows/android.yml
vendored
|
@ -30,9 +30,9 @@ jobs:
|
||||||
- name: Grant execute permission for gradlew
|
- name: Grant execute permission for gradlew
|
||||||
run: chmod +x gradlew
|
run: chmod +x gradlew
|
||||||
- name: Build Debug APK with Gradle
|
- name: Build Debug APK with Gradle
|
||||||
run: ./gradlew buildDebug
|
run: ./gradlew app:packageDebug
|
||||||
- name: Upload a Build Artifact
|
- name: Upload a Build Artifact
|
||||||
uses: actions/upload-artifact@v3.1.1
|
uses: actions/upload-artifact@v3.1.1
|
||||||
with:
|
with:
|
||||||
name: Auxio_Canary.apk
|
name: Auxio_Canary
|
||||||
path: ./app/build/intermediates/apk/debug/app-debug.apk
|
path: ./app/build/outputs/apk/debug/app-debug.apk
|
||||||
|
|
Loading…
Reference in a new issue