-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: set up JDK 17 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
|
@@ -22,16 +22,19 @@ jobs: | |
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Build release app with Gradle | ||
run: ./gradlew assembleRelease; tree . | ||
|
||
- name: Upload a Build Artifact | ||
uses: actions/[email protected] | ||
- name: Build release app | ||
run: | | ||
./gradlew assembleRelease | ||
# jarsigner -verbose -keystore ~/.config/.android/debug.keystore -storepass android -keypass android app/build/outputs/apk/release/app-release-unsigned.apk androiddebugkey | ||
apksigner sign --ks ~/.config/.android/debug.keystore --ks-key-alias androiddebugkey --ks-pass pass:android app/build/outputs/apk/release/app-release-unsigned.apk | ||
mv app/build/outputs/apk/release/app-release-unsigned.apk app/build/outputs/apk/release/app-release.apk | ||
- name: Sort files | ||
run: | | ||
mkdir output | ||
mv app/build/outputs/apk/release/app-release.apk output | ||
- name: Upload release | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
# Artifact name | ||
name: | ||
app.apk | ||
# A file, directory or wildcard pattern that describes what to upload | ||
path: | ||
./app/build/outputs/apk/release/app-release.apk | ||
name: app-release.zip | ||
path: output/app-release.* | ||
if-no-files-found: error |