-
Notifications
You must be signed in to change notification settings - Fork 349
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
bmax
committed
Dec 31, 2023
1 parent
e8b87ec
commit 4d71af3
Showing
1 changed file
with
21 additions
and
20 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 |
---|---|---|
|
@@ -47,12 +47,13 @@ jobs: | |
uses: actions/download-artifact@v3 | ||
with: | ||
name: apd-aarch64-linux-android | ||
path: ../app/libs/arm64-v8a/libapd.so | ||
path: . | ||
|
||
- name: test | ||
- name: Copy Libs | ||
run: | | ||
ls | ||
echo "===" | ||
mv aarch64-linux-android/release/apd app/libs/arm64-v8a/libapd.so | ||
ls app/libs/arm64-v8a/ | ||
- name: Build with Gradle | ||
|
@@ -70,22 +71,22 @@ jobs: | |
name: APatch | ||
path: app/build/outputs/apk/release/*.apk | ||
|
||
- name: Sign Release | ||
uses: r0adkll/sign-android-release@v1 | ||
id: sign_app | ||
with: | ||
releaseDirectory: app/build/outputs/apk/release | ||
signingKeyBase64: ${{ secrets.SIGNING_KEY }} | ||
alias: ${{ secrets.ALIAS }} | ||
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} | ||
keyPassword: ${{ secrets.KEY_PASSWORD }} | ||
# - name: Sign Release | ||
# uses: r0adkll/sign-android-release@v1 | ||
# id: sign_app | ||
# with: | ||
# releaseDirectory: app/build/outputs/apk/release | ||
# signingKeyBase64: ${{ secrets.SIGNING_KEY }} | ||
# alias: ${{ secrets.ALIAS }} | ||
# keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} | ||
# keyPassword: ${{ secrets.KEY_PASSWORD }} | ||
|
||
- name: Release apk | ||
uses: ncipollo/[email protected] | ||
with: | ||
token: ${{ github.token }} | ||
tag: ${{ steps.parse_version.outputs.VERSION }} | ||
artifacts: ${{steps.sign_app.outputs.signedReleaseFile}} | ||
generateReleaseNotes: true | ||
makeLatest: true | ||
replacesArtifacts: true | ||
# - name: Release apk | ||
# uses: ncipollo/[email protected] | ||
# with: | ||
# token: ${{ github.token }} | ||
# tag: ${{ steps.parse_version.outputs.VERSION }} | ||
# artifacts: ${{steps.sign_app.outputs.signedReleaseFile}} | ||
# generateReleaseNotes: true | ||
# makeLatest: true | ||
# replacesArtifacts: true |