From 1d25027c55f5b22aa74d52e2df1c7e1992622796 Mon Sep 17 00:00:00 2001 From: Cam Likes Kirby <92703353+CamLikesKirby@users.noreply.github.com> Date: Mon, 11 Nov 2024 17:04:21 -0600 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 99ad812..9cb5b7d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,10 @@ jobs: 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 + run: | + echo "${{github.run_id}}" > GIT_VERSION.txt + mkdir -p export/release/windows/bin/assets/data + mv GIT_VERSION.txt export/release/windows/bin/assets/data/GIT_VERSION.txt - name: Publish Artifact uses: actions/upload-artifact@v4 @@ -46,5 +49,4 @@ jobs: name: ReleaseBuild path: | export/release/windows/bin - export/release/windows/bin/assets/data/GIT_VERSION.txt