-
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
1 parent
13d10e2
commit f0b453c
Showing
1 changed file
with
8 additions
and
8 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 |
---|---|---|
|
@@ -17,13 +17,13 @@ jobs: | |
distribution: oracle | ||
- | ||
name: Keystore Setup | ||
run: echo "${{secrets.ANDROID_KEYSTORE_64}}" | base64 --decode > glassconsole.keystore | ||
run: echo "${{secrets.ANDROID_KEYSTORE_64}}" | base64 --decode > sleeps.keystore | ||
- | ||
name: Test | ||
run: ./gradlew --no-daemon check | ||
- | ||
env: | ||
ORG_GRADLE_PROJECT_signingFile: glassconsole.keystore | ||
ORG_GRADLE_PROJECT_signingFile: sleeps.keystore | ||
ORG_GRADLE_PROJECT_signingKeyPassword: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }} | ||
ORG_GRADLE_PROJECT_signingStorePassword: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }} | ||
ORG_GRADLE_PROJECT_signingAlias: ${{ secrets.ANDROID_KEYSTORE_ALIAS }} | ||
|
@@ -34,13 +34,13 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
name: Android APK | ||
path: build/output/GlassConsole-${{ github.ref_name }}.apk | ||
path: build/output/android-${{ github.ref_name }}.apk | ||
- | ||
name: Archive Bundle | ||
uses: actions/[email protected] | ||
with: | ||
name: Android AAB | ||
path: build/output/GlassConsole-${{ github.ref_name }}.aab | ||
path: build/output/android-${{ github.ref_name }}.aab | ||
- | ||
name: Create Release | ||
id: create_release | ||
|
@@ -59,8 +59,8 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: build/output/GlassConsole-${{ github.ref_name }}.aab | ||
asset_name: GlassConsole-${{ github.ref_name }}.aab | ||
asset_path: build/output/android-${{ github.ref_name }}.aab | ||
asset_name: Sleeps-${{ github.ref_name }}.aab | ||
asset_content_type: application/octet-stream | ||
- | ||
name: Upload APK Release Asset | ||
|
@@ -69,6 +69,6 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: build/output/GlassConsole-${{ github.ref_name }}.apk | ||
asset_name: GlassConsole-${{ github.ref_name }}.apk | ||
asset_path: build/output/android-${{ github.ref_name }}.apk | ||
asset_name: Sleeps-${{ github.ref_name }}.apk | ||
asset_content_type: application/octet-stream |