diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index e3b631b4..2e9c6d89 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -32,6 +32,14 @@ jobs: # Add additional options to the MSBuild command line here (like platform or verbosity level). # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} + + - name: Bunle resources + run: Xcopy /I /E Editor/resources bin/Release-windows-x86_64/Editor/ + + - name: Install zip + uses: montudor/action-zip@v1 + with: + args: zip -qq -r Nuake.zip bin/Release-windows-x86_64/Editor/Editor.exe bin/Release-windows-x86_64/Editor/resources/ - name: Pre-release uses: "marvinpinto/action-automatic-releases@latest" @@ -40,11 +48,5 @@ jobs: automatic_release_tag: "latest" prerelease: true title: "Development Build" - files: bin/Release-windows-x86_64/Editor/Editor.exe - - - name: Install zip - uses: montudor/action-zip@v1 - - - name: Zip - + files: bin/Release-windows-x86_64/Editor/Nuake.zip