Skip to content

Commit

Permalink
Fix upload path
Browse files Browse the repository at this point in the history
  • Loading branch information
Super12138 committed Apr 10, 2024
1 parent 5af61ff commit 9ad17b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/android_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
run: ./gradlew assembleRelease

- name: Upload APK
if: success() && github.event_name != 'pull_request' && github.repository == 'Super12138/ToDo'
uses: actions/[email protected]
with:
name: Release
path: ${{steps.sign_app.outputs.signedFile}}
path: ${{ github.workspace }}/app/build/outputs/apk/release
4 changes: 3 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ android {
}

buildTypes {
release {
all {
signingConfig = releaseSigning
}
release {
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(
Expand Down

0 comments on commit 9ad17b1

Please sign in to comment.