Skip to content

Commit cda0fc5

Browse files
Merge pull request #17 from moxie-coder/vortex2.0
simple compile fixes
2 parents 7226066 + 217b8f6 commit cda0fc5

2 files changed

Lines changed: 22 additions & 23 deletions

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,20 @@ jobs:
2727

2828
- uses: krdlab/setup-haxe@master
2929
with:
30-
haxe-version: 4.3.4
30+
haxe-version: 4.3.7
3131
# Runs a set of commands using the runners shell
3232
- name: Install Haxelib
3333
run: |
3434
haxelib setup ~/haxelib
35-
haxelib --global install hmm
36-
37-
haxelib --global run hmm install
35+
haxelib --global install hmm --quiet
36+
haxelib --global run hmm install --quiet
3837
haxelib list
3938
- name: Create Version Tag
4039
run: echo "${{github.run_id}}" > VERSION
4140
- name: Compile
4241
run: haxelib run lime build linux --app-version="2.0.0-${{ github.run_id}}"
4342
- name: Publish Artifact
44-
uses: actions/upload-artifact@v2
43+
uses: actions/upload-artifact@v4
4544
with:
4645
name: linuxBuild
4746
path: 'export/linux/bin'
@@ -54,13 +53,13 @@ jobs:
5453

5554
- uses: krdlab/setup-haxe@master
5655
with:
57-
haxe-version: 4.3.4
56+
haxe-version: 4.3.7
5857
# Runs a set of commands using the runners shell
5958
- name: Install Haxelib
6059
run: |
6160
haxelib setup C:/haxelib
62-
haxelib --global install hmm
63-
haxelib --global run hmm install
61+
haxelib --global install hmm --quiet
62+
haxelib --global run hmm install --quiet
6463
haxelib list
6564
shell: cmd
6665
- name: Create Version Tag
@@ -70,14 +69,14 @@ jobs:
7069

7170

7271
- name: Publish Artifact
73-
uses: actions/upload-artifact@v2
72+
uses: actions/upload-artifact@v4
7473
with:
7574
name: windowsBuild
7675
path: export/windows/bin
7776
- name: Compile 32 bit
7877
run: haxelib run lime build windows -D32bit -32
7978
- name: Publish 32bit
80-
uses: actions/upload-artifact@v2
79+
uses: actions/upload-artifact@v4
8180
with:
8281
name: windows32Build
8382
path: export/32bit/windows/bin

hmm.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"dependencies": [
3+
{
4+
"name": "lime",
5+
"type": "haxelib",
6+
"version": "8.2.2"
7+
},
8+
{
9+
"name": "openfl",
10+
"type": "haxelib",
11+
"version": "9.3.2"
12+
},
313
{
414
"name": "flixel",
515
"type": "haxelib",
@@ -24,14 +34,14 @@
2434
"name": "haxeui-core",
2535
"type": "git",
2636
"dir": null,
27-
"ref": "master",
37+
"ref": "fb5bae6",
2838
"url": "https://github.com/haxeui/haxeui-core.git"
2939
},
3040
{
3141
"name": "haxeui-flixel",
3242
"type": "git",
3343
"dir": null,
34-
"ref": "master",
44+
"ref": "576ee63",
3545
"url": "https://github.com/haxeui/haxeui-flixel.git"
3646
},
3747
{
@@ -46,16 +56,6 @@
4656
"ref": "a8c26f1",
4757
"url": "https://github.com/FunkinCrew/json2object"
4858
},
49-
{
50-
"name": "lime",
51-
"type": "haxelib",
52-
"version": "8.1.2"
53-
},
54-
{
55-
"name": "openfl",
56-
"type": "haxelib",
57-
"version": "9.3.2"
58-
},
5959
{
6060
"name": "thx.core",
6161
"type": "git",
@@ -76,4 +76,4 @@
7676
"version": "1.4.0"
7777
}
7878
]
79-
}
79+
}

0 commit comments

Comments
 (0)