This repository was archived by the owner on May 25, 2026. It is now read-only.
Android Release (Public Beta) #7
This file contains hidden or 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
| name: Android Release (Public Beta) | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: 'Release version (e.g., v1.0.0-beta)' | |
| required: true | |
| type: string | |
| jobs: | |
| release: | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: "recursive" | |
| fetch-depth: 0 # Full history for changelog | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: "temurin" | |
| java-version: "21" | |
| - name: Get JRE 8 | |
| uses: dawidd6/action-download-artifact@v9 | |
| with: | |
| workflow: build.yml | |
| path: app_pojavlauncher/src/main/assets/components/jre | |
| workflow_conclusion: completed | |
| repo: AngelAuraMC/angelauramc-openjdk-build | |
| branch: buildjre8 | |
| name: jre8-pojav | |
| - name: Get JRE17 | |
| uses: dawidd6/action-download-artifact@v9 | |
| with: | |
| workflow: build.yml | |
| path: app_pojavlauncher/src/main/assets/components/jre-new | |
| workflow_conclusion: completed | |
| repo: AngelAuraMC/angelauramc-openjdk-build | |
| branch: buildjre17-21 | |
| name: jre17-pojav | |
| - name: Get JRE21 | |
| uses: dawidd6/action-download-artifact@v9 | |
| with: | |
| workflow: build.yml | |
| path: app_pojavlauncher/src/main/assets/components/jre-21 | |
| workflow_conclusion: completed | |
| repo: AngelAuraMC/angelauramc-openjdk-build | |
| branch: buildjre17-21 | |
| name: jre21-pojav | |
| - uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| validate-wrappers: false | |
| gradle-version: "8.11" | |
| cache-read-only: false | |
| gradle-home-cache-includes: | | |
| caches | |
| notifications | |
| jdks | |
| gradle-home-cache-excludes: | | |
| caches/build-cache-1 | |
| caches/*/gc.properties | |
| - name: Build JRE JAR files | |
| run: | | |
| ./scripts/languagelist_updater.sh | |
| mkdir -p out | |
| # Build JRE JAR files (security manager, etc...) | |
| gradle :jre_lwjgl3glfw:build --build-cache | |
| - name: Build Release APK | |
| run: | | |
| # Build the launcher in release mode | |
| gradle :app_pojavlauncher:assembleDebug --build-cache | |
| - name: Determine Version | |
| id: version | |
| run: | | |
| if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then | |
| VERSION="${{ inputs.version }}" | |
| else | |
| VERSION="${GITHUB_REF#refs/tags/}" | |
| fi | |
| echo "version=$VERSION" >> $GITHUB_OUTPUT | |
| echo "Release version: $VERSION" | |
| - name: Rename APK | |
| run: | | |
| mv app_pojavlauncher/build/outputs/apk/debug/app_pojavlauncher-debug.apk out/KnightLauncher-${{ steps.version.outputs.version }}.apk | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| tag_name: ${{ steps.version.outputs.version }} | |
| name: KnightLauncher Android ${{ steps.version.outputs.version }} | |
| body: "🎮 Play Spiral Knights on Android!" | |
| files: | | |
| out/KnightLauncher-${{ steps.version.outputs.version }}.apk | |
| draft: false | |
| prerelease: true | |
| generate_release_notes: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |