Release #7
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
name: Release | |
on: workflow_dispatch | |
jobs: | |
Android: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Setup Android NDK | |
uses: nttld/setup-ndk@main | |
id: setup-ndk | |
with: | |
ndk-version: r21e | |
- name: Setup Java JDK | |
uses: actions/setup-java@main | |
with: | |
distribution: 'zulu' | |
java-version: 18 | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@main | |
- name: Setup Haxe | |
uses: krdlab/[email protected] | |
with: | |
haxe-version: 4.2.5 | |
- name: Install Haxelib | |
run: | | |
haxelib setup ~/haxelib | |
haxelib install hxcpp 4.2.1 > /dev/null | |
haxelib install lime 8.0.1 | |
haxelib install openfl 9.2.1 | |
haxelib --never install flixel 5.2.2 | |
haxelib run lime setup flixel | |
haxelib install flixel-tools | |
haxelib install flixel-ui | |
haxelib install flixel-addons 3.0.2 | |
haxelib install tjson | |
haxelib install hxjsonast | |
haxelib install hscript | |
haxelib install hxCodec 2.6.1 | |
haxelib git extension-androidtools https://github.com/Default-name123/oldtools | |
haxelib git linc_luajit https://github.com/Sirox228/linc_luajit | |
haxelib install hxcpp-debug-server | |
haxelib list | |
- name: Create Version Tag | |
run: echo "${{github.run_id}}" > VERSION | |
- name: Setup Lime | |
run: | | |
haxelib run lime setup -alias -y | |
haxelib run lime config ANDROID_SDK $ANDROID_HOME | |
haxelib run lime config ANDROID_NDK_ROOT $ANDROID_NDK_HOME | |
haxelib run lime config JAVA_HOME $JAVA_HOME | |
haxelib run lime config ANDROID_SETUP true | |
haxelib set lime 8.0.1 | |
haxelib set openfl 9.2.1 | |
haxelib set flixel 5.2.2 | |
haxelib set hxCodec 2.6.1 | |
haxelib set flixel-addons 2.11.0 | |
haxelib set hxcpp 4.2.1 | |
env: | |
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }} | |
- name: Building | |
run: haxelib run lime build android -release | |
- name: Upload Artifact | |
uses: actions/upload-artifact@main | |
with: | |
name: androidBuild | |
path: export/release/android/bin/app/build/outputs/apk/debug | |
if-no-files-found: warn | |
Publish: | |
needs: Android | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Download | |
uses: actions/download-artifact@main | |
with: | |
name: androidBuild | |
path: ${{github.workspace}} | |
- name: Publish | |
uses: marvinpinto/action-automatic-releases@latest | |
with: | |
repo_token: ${{secrets.GITHUB_TOKEN}} | |
prerelease: false | |
automatic_release_tag: 'v1.0.1' | |
title: ' Android Port v1.0.1' | |
files: ${{github.workspace}}/Pibby Apocalypse-debug.apk |