-
Notifications
You must be signed in to change notification settings - Fork 14
94 lines (87 loc) · 2.92 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
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