From bee85bebf0cdc1e1d5b98a82d045f23a2e466e06 Mon Sep 17 00:00:00 2001 From: Cam the Kirby <92703353+CamtheKirby@users.noreply.github.com> Date: Sun, 10 Nov 2024 17:05:26 -0600 Subject: [PATCH] little test --- .github/workflows/main.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 14b2114..e3f85f6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,12 +33,18 @@ jobs: haxelib install hxcpp > nul .\"Bulid.bat" shell: cmd - - name: Create Version Tag - run: echo "${{github.run_id}}" > VERSION + - name: Compile run: haxelib run lime build windows --app-version="4.0.0-${{ github.run_id}}" + + - name: Git Version File + run: echo "${{github.run_id}}" > GIT_VERSION.txt + - name: Publish Artifact uses: actions/upload-artifact@v4 with: name: ReleaseBuild - path: export/release/windows/bin + path: | + export/release/windows/bin + GIT_VERSION.txt +