From 3466644c507284e0e67abbfbb3465dd21826a1e6 Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Tue, 31 Aug 2021 08:08:55 -0400 Subject: [PATCH 1/8] Update msbuild.yml --- .github/workflows/msbuild.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index fa378abc..4f264d2a 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -31,3 +31,17 @@ 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}} + + pre-release: + name: "Pre Release" + runs-on: windows-latest + + steps: + - uses: "marvinpinto/action-automatic-releases@latest" + + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: "latest" + prerelease: true + title: "Development Build" + files: readme.md From eba29f10902fefc32fd34d1ed87179e44e284f32 Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Tue, 31 Aug 2021 08:15:08 -0400 Subject: [PATCH 2/8] Update msbuild.yml --- .github/workflows/msbuild.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 4f264d2a..e9783c33 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -17,6 +17,7 @@ jobs: steps: - uses: actions/checkout@v2 + with: submodules: true @@ -32,16 +33,13 @@ jobs: # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} - pre-release: - name: "Pre Release" - runs-on: windows-latest - - steps: - - uses: "marvinpinto/action-automatic-releases@latest" - + - name: Pre-release + uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}" automatic_release_tag: "latest" prerelease: true title: "Development Build" - files: readme.md + files: bin/Release-windows-x86_64/Editor/Editor.exe + + From f134ab079d2ead526f9522d0fcf82b563da30ebd Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Tue, 31 Aug 2021 08:28:49 -0400 Subject: [PATCH 3/8] Update msbuild.yml --- .github/workflows/msbuild.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index e9783c33..e3b631b4 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -42,4 +42,9 @@ jobs: title: "Development Build" files: bin/Release-windows-x86_64/Editor/Editor.exe + - name: Install zip + uses: montudor/action-zip@v1 + + - name: Zip + From 825687a42c5c6bf298a4939a22650db355fa706f Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Tue, 31 Aug 2021 09:03:34 -0400 Subject: [PATCH 4/8] Update msbuild.yml --- .github/workflows/msbuild.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) 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 From db55ab88e78137eb36c7c6699d0d125507b604cf Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Tue, 31 Aug 2021 09:14:33 -0400 Subject: [PATCH 5/8] Update msbuild.yml --- .github/workflows/msbuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 2e9c6d89..6f48fec1 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -39,7 +39,7 @@ jobs: - 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/ + args: zip -qq -r Nuake.zip bin/Release-windows-x86_64/Editor/ - name: Pre-release uses: "marvinpinto/action-automatic-releases@latest" From 5cc6e9c8d8c530cbee30ef5393b8a35bad306dc9 Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Tue, 31 Aug 2021 09:30:12 -0400 Subject: [PATCH 6/8] Update msbuild.yml --- .github/workflows/msbuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 6f48fec1..a73200c2 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -34,7 +34,7 @@ jobs: 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/ + run: Xcopy Editor/resources bin/Release-windows-x86_64/Editor/ /I /E - name: Install zip uses: montudor/action-zip@v1 From 1ce3f7d879d16dd59bd533d212f4b4f98c71ed97 Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Tue, 31 Aug 2021 09:44:56 -0400 Subject: [PATCH 7/8] Update msbuild.yml --- .github/workflows/msbuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index a73200c2..51d53c2c 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -34,7 +34,7 @@ jobs: run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} - name: Bunle resources - run: Xcopy Editor/resources bin/Release-windows-x86_64/Editor/ /I /E + run: xcopy "Editor/resources" "bin/Release-windows-x86_64/Editor/" /I /E - name: Install zip uses: montudor/action-zip@v1 From 2a3ae2813715b21ca89de8be38adb19bca4845c2 Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Tue, 31 Aug 2021 09:53:26 -0400 Subject: [PATCH 8/8] Update msbuild.yml --- .github/workflows/msbuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 51d53c2c..001ba699 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -34,7 +34,7 @@ jobs: run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} - name: Bunle resources - run: xcopy "Editor/resources" "bin/Release-windows-x86_64/Editor/" /I /E + run: xcopy "Editor/resources" "bin/Release-windows-x86_64/Editor" /I /E - name: Install zip uses: montudor/action-zip@v1