From 775639e76ee46c35d3e383e8efa88ad708c41a19 Mon Sep 17 00:00:00 2001 From: fireredfan7 <87201149+fireredfan7@users.noreply.github.com> Date: Fri, 17 Sep 2021 11:45:39 -0500 Subject: [PATCH 1/3] Update build.yml --- .github/workflows/build.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e8cdcfe62..3177a5d96 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -128,20 +128,6 @@ jobs: with: name: windowsWeek7Build path: export/release/windows/bin - - name: Compile 32 bit - run: haxelib run lime build windows -D32bit -32 - - name: Publish 32bit - uses: actions/upload-artifact@v2 - with: - name: windows32Build - path: export/32bit/windows/bin - - name: Copy Week 7 Files - run: Copy-Item -Force -Recurse ./Week7Assets/* -Destination ./export/32bit/windows/bin/assets - - name: Publish Artifact - uses: actions/upload-artifact@v2 - with: - name: windowsWeek732bitBuild - path: export/32bit/windows/bin buildMac: runs-on: macos-latest From 4920defca86ac5041b679d8e186c872134b87e52 Mon Sep 17 00:00:00 2001 From: fireredfan7 <87201149+fireredfan7@users.noreply.github.com> Date: Fri, 17 Sep 2021 11:47:42 -0500 Subject: [PATCH 2/3] Update and rename win64.yml to win32.yml --- .github/workflows/{win64.yml => win32.yml} | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) rename .github/workflows/{win64.yml => win32.yml} (79%) diff --git a/.github/workflows/win64.yml b/.github/workflows/win32.yml similarity index 79% rename from .github/workflows/win64.yml rename to .github/workflows/win32.yml index 74a80354f..61ae8dd20 100644 --- a/.github/workflows/win64.yml +++ b/.github/workflows/win32.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: Win64 +name: Win32 # Controls when the action will run. on: @@ -50,10 +50,17 @@ jobs: 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: Compile 32 bit + run: haxelib run lime build windows -D32bit -32 + - name: Publish 32bit + uses: actions/upload-artifact@v2 + with: + name: windows32Build + path: export/32bit/windows/bin + - name: Copy Week 7 Files + run: Copy-Item -Force -Recurse ./Week7Assets/* -Destination ./export/32bit/windows/bin/assets - name: Publish Artifact uses: actions/upload-artifact@v2 with: - name: windows64Build - path: export/release/windows/bin + name: windowsWeek732bitBuild + path: export/32bit/windows/bin From 326e2ac39e1647db56306b57e52472a2f8f7fff5 Mon Sep 17 00:00:00 2001 From: fireredfan7 <87201149+fireredfan7@users.noreply.github.com> Date: Fri, 17 Sep 2021 11:55:08 -0500 Subject: [PATCH 3/3] Update win32.yml --- .github/workflows/win32.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/win32.yml b/.github/workflows/win32.yml index 61ae8dd20..274401700 100644 --- a/.github/workflows/win32.yml +++ b/.github/workflows/win32.yml @@ -16,7 +16,7 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # This workflow contains a single job called "build" - buildWindows64x: + buildWindows32x: runs-on: windows-latest steps: