-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
d080161
commit cde0429
Showing
3 changed files
with
24 additions
and
75 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 |
---|---|---|
@@ -1,72 +1,21 @@ | ||
on: | ||
push: | ||
branches: test | ||
tags: | ||
- v* | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2.6.0 | ||
|
||
- name: Setup JAVA 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'corretto' | ||
java-version: 17 | ||
steps: | ||
- uses: r0adkll/sign-android-release@v1 | ||
name: Sign app APK | ||
# ID used to access action output | ||
id: sign_app | ||
with: | ||
releaseDirectory: app/build/outputs/apk/release | ||
signingKeyBase64: ${{ secrets.SIGNING_KEY_STORE_BASE64 }} | ||
alias: ${{ secrets.SIGNING_KEY_ALIAS }} | ||
keyStorePassword: ${{ secrets.SIGNING_STORE_PASSWORD }} | ||
keyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }} | ||
env: | ||
# override default build-tools version (29.0.3) -- optional | ||
BUILD_TOOLS_VERSION: "30.0.2" | ||
|
||
- name: Cache Gradle and wrapper | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | ||
|
||
#1 | ||
- name: Decode Keystore | ||
env: | ||
ENCODED_STRING: ${{ secrets.SIGNING_KEY_STORE_BASE64 }} | ||
SIGNING_KEY_STORE_PATH: ${{ secrets.SIGNING_KEY_STORE_PATH }} | ||
|
||
run: | | ||
echo $ENCODED_STRING > keystore-b64.txt | ||
base64 -d keystore-b64.txt > $SIGNING_KEY_STORE_PATH | ||
test -s $SIGNING_KEY_STORE_PATH || { echo "Keystore file creation failed."; exit 1; } | ||
- name: Make gradlew executable | ||
run: chmod +x ./gradlew | ||
|
||
#2 | ||
- name: Build Release apk | ||
env: | ||
SIGNING_KEY_STORE_PATH: ${{ secrets.SIGNING_KEY_STORE_PATH }} | ||
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }} | ||
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }} | ||
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }} | ||
run: ./gradlew assembleRelease | ||
|
||
- name: Build Release bundle | ||
env: | ||
SIGNING_KEY_STORE_PATH: ${{ secrets.SIGNING_KEY_STORE_PATH }} | ||
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }} | ||
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }} | ||
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }} | ||
run: ./gradlew bundleRelease | ||
#3 | ||
- name: Upload Release Build to Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: release-artifacts | ||
paths: | | ||
app/build/outputs/apk/release/ | ||
app/build/outputs/bundle/release/ | ||
#4 | ||
- name: Create Github Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
generate_release_notes: true | ||
prerelease: true | ||
files: | | ||
app/build/outputs/apk/release/app-release.apk | ||
app/build/outputs/bundle/release/app-release.aab | ||
# Example use of `signedReleaseFile` output -- not needed | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: Signed app bundle | ||
path: ${{steps.sign_app.outputs.signedReleaseFile}} |
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
Binary file not shown.