From 1861a8429f7e67321ecd96d6cee0f8cb3e15195a Mon Sep 17 00:00:00 2001 From: Vortex2Oblivion <73261680+Vortex2Oblivion@users.noreply.github.com> Date: Sat, 13 Jan 2024 14:58:57 -0500 Subject: [PATCH] a --- .github/workflows/workflow.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 6504c8e6c5..c161966831 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -55,6 +55,14 @@ jobs: haxelib list - name: Create Version Tag run: echo "${{github.run_id}}" > VERSION + - name: Rebuild hxcpp command line tool + run: | + cd tools/hxcpp + haxe compile.hxml + - name: Build hxcpp binaries + run: | + cd project + neko build.n - name: Compile Linux run: haxelib --always run lime build Project.xml linux --app-version="4.0.0-${{ github.run_id}}" - name: Publish Linux Artifact @@ -149,6 +157,14 @@ jobs: shell: cmd - name: Create Version Tag run: echo "${{github.run_id}}" > VERSION + - name: Rebuild hxcpp command line tool + run: | + cd tools/hxcpp + haxe compile.hxml + - name: Build hxcpp binaries + run: | + cd project + neko build.n - name: Compile run: haxelib --always run lime build windows --app-version="4.0.0-${{ github.run_id}}" - name: Publish Artifact @@ -196,6 +212,14 @@ jobs: haxelib list - name: Create Version Tag run: echo "${{github.run_id}}" > VERSION + - name: Rebuild hxcpp command line tool + run: | + cd tools/hxcpp + haxe compile.hxml + - name: Build hxcpp binaries + run: | + cd project + neko build.n - name: Compile run: haxelib --always run lime build mac --app-version="4.0.0-${{ github.run_id}}" - name: Publish Artifact