-
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (25 loc) · 669 Bytes
/
Copy pathlinux.yml
File metadata and controls
31 lines (25 loc) · 669 Bytes
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
name: Linux Build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.7
- name: Set up Haxe
uses: krdlab/setup-haxe@master
with:
haxe-version: 4.3.5
- name: Installing/Updating hxcpp
run: |
haxelib --always install hxcpp
- name: Compile project
run: haxe build.hxml
- name: Debug output
run: ls -la export/HaxeNXCompiler
- name: Upload compiled artifact
uses: actions/upload-artifact@v4.3.4
with:
name: Linux64_HaxeNXCompiler
path: export/HaxeNXCompiler