Merge pull request #14 from InkApplications/inkui-update #12
Workflow file for this run
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
on: | |
push: | |
tags: ['*'] | |
name: Release | |
jobs: | |
tests: | |
uses: inkapplications/.github/.github/workflows/[email protected] | |
sdk-publish: | |
name: Publish to Maven Central | |
needs: [tests] | |
secrets: inherit | |
uses: inkapplications/.github/.github/workflows/[email protected] | |
with: | |
version: ${{ github.ref_name }} | |
draft-release: false | |
android-publish: | |
name: Publish Android Artifacts | |
needs: [tests] | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/[email protected] | |
- | |
name: Configure Java | |
uses: actions/[email protected] | |
with: | |
java-version: 17 | |
distribution: temurin | |
- | |
name: Keystore Setup | |
run: echo "${{secrets.ANDROID_KEYSTORE_64}}" | base64 --decode > glassconsole.keystore | |
- | |
env: | |
ORG_GRADLE_PROJECT_signingFile: glassconsole.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 }} | |
name: Build Android App | |
run: ./gradlew --no-daemon assembleRelease bundleRelease -Pcommit=${{ github.sha }} -PversionName=${{ github.ref_name }} -PversionCode=$((($GITHUB_RUN_NUMBER * 10) + $GITHUB_RUN_ATTEMPT + 211)) | |
- | |
name: Prepare Uploads | |
run: | | |
mkdir -p build | |
mkdir -p build/output | |
cp android/build/outputs/apk/release/android-release.apk build/output/GlassConsole-${{ github.ref_name }}.apk | |
cp android/build/outputs/bundle/release/android-release.aab build/output/GlassConsole-${{ github.ref_name }}.aab | |
- | |
name: Archive APK | |
uses: actions/[email protected] | |
with: | |
name: Android-APK | |
path: build/output/GlassConsole-${{ github.ref_name }}.apk | |
- | |
name: Archive Bundle | |
uses: actions/[email protected] | |
with: | |
name: Android-AAB | |
path: build/output/GlassConsole-${{ github.ref_name }}.aab | |
- | |
name: Play Service Account Setup | |
run: echo '${{secrets.PLAY_CONSOLE_SERVICE_JSON}}' > service_account.json | |
- | |
name: Deploy to Play Store | |
uses: r0adkll/[email protected] | |
with: | |
serviceAccountJson: service_account.json | |
packageName: com.inkapplications.glassconsole | |
releaseFiles: build/output/GlassConsole-*.aab | |
track: internal | |
create-release: | |
name: Draft Github Release | |
needs: [android-publish] | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- | |
name: Create Release | |
id: create_release | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref_name }} | |
draft: true | |
prerelease: true | |
- | |
name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
- | |
name: Upload AAB Release Asset | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: Android-AAB/GlassConsole-${{ github.ref_name }}.aab | |
asset_name: GlassConsole-${{ github.ref_name }}.aab | |
asset_content_type: application/octet-stream | |
- | |
name: Upload APK Release Asset | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: Android-APK/GlassConsole-${{ github.ref_name }}.apk | |
asset_name: GlassConsole-${{ github.ref_name }}.apk | |
asset_content_type: application/octet-stream |