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 diff --git a/.github/workflows/win64.yml b/.github/workflows/win32.yml similarity index 78% rename from .github/workflows/win64.yml rename to .github/workflows/win32.yml index 74a80354f..274401700 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: @@ -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: @@ -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