-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add APK output for x86_64 CPU architecture
- Loading branch information
1 parent
b7ee252
commit 68d8f9f
Showing
3 changed files
with
10 additions
and
3 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 |
---|---|---|
|
@@ -113,6 +113,10 @@ jobs: | |
sha=`sha256sum neko-x86.apk | awk '{ print $1 }'` | ||
echo "APK_X86_SHA=$sha" >> $GITHUB_ENV | ||
cp app/build/outputs/apk/standard/release/Neko-standard-x86_64-release-unsigned-signed.apk neko-x86_64.apk | ||
sha=`sha256sum neko-x86_64.apk | awk '{ print $1 }'` | ||
echo "APK_X86_64_SHA=$sha" >> $GITHUB_ENV | ||
- name: Delete any draft releases and last latest tag | ||
uses: dev-drprasad/[email protected] | ||
with: | ||
|
@@ -138,7 +142,9 @@ jobs: | |
| Universal | ${{ env.APK_UNIVERSAL_SHA }} | ||
| arm64-v8a | ${{ env.APK_ARM64_V8A_SHA }} | ||
| armeabi-v7a | ${{ env.APK_ARMEABI_V7A_SHA }} | ||
| x86 | ${{ env.APK_X86_SHA }} | | ||
| x86 | ${{ env.APK_X86_SHA }} | ||
| x86_64 | ${{ env.APK_X86_64_SHA }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
draft: true | ||
replacesArtifacts: true | ||
|
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
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