From d1f9314bfe243257f2d851f2e402e0cabf93f0d5 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 01:22:18 -0400 Subject: [PATCH 01/16] Update mod_meta.json --- Winch/mod_meta.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Winch/mod_meta.json b/Winch/mod_meta.json index 80d93197..e1a5ac92 100644 --- a/Winch/mod_meta.json +++ b/Winch/mod_meta.json @@ -2,5 +2,5 @@ "Name": "Winch", "Author": "Hacktix", "ModGUID": "hacktix.winch", - "Version": "0.2.1" + "Version": "0.2.2" } From 10b2432d9fba428625ca01cc3410e528925b83e2 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 01:33:41 -0400 Subject: [PATCH 02/16] Update release_build.yml --- .github/workflows/release_build.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index 7175acda..06bee357 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -58,8 +58,7 @@ jobs: zip -r $mod.zip * mv $mod.zip ../.. cd ../.. - done - + done - name: Upload Asset uses: ncipollo/release-action@v1 with: @@ -76,11 +75,8 @@ jobs: needs: Update_Release runs-on: windows-latest steps: - - name: Download Winch Asset - uses: actions/download-artifact@v3 - with: - name: Winch - path: Winch + - name: Checkout + uses: actions/checkout@v3 - name: Get version id: version uses: notiz-dev/github-action-json-property@release @@ -91,7 +87,8 @@ jobs: uses: NuGet/setup-nuget@v1.0.5 - name: Pack nuget run: nuget pack package -OutputFileNamesWithoutVersion -OutputDirectory build -Properties "version=${{ steps.version.outputs.prop }};" + - name: Publish nuget run: | - nuget push "build/Winch.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json + nuget push "Winch/bin/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json From a0ea68a89549feaa298dddcd31274867a39c1dc7 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 01:36:31 -0400 Subject: [PATCH 03/16] Update release_build.yml --- .github/workflows/release_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index 06bee357..943a4ad5 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -90,5 +90,5 @@ jobs: - name: Publish nuget run: | - nuget push "Winch/bin/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json + nuget push "build/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json From 9952ddfb78814e6e7a0564adcb692e0ae72b5698 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 01:39:53 -0400 Subject: [PATCH 04/16] Update release_build.yml --- .github/workflows/release_build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index 943a4ad5..7ada7837 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -77,16 +77,19 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: Change directory + run: | + cd Winch - name: Get version id: version uses: notiz-dev/github-action-json-property@release with: - path: Winch\mod_meta.json + path: mod_meta.json prop_path: Version - name: Set up nuget uses: NuGet/setup-nuget@v1.0.5 - name: Pack nuget - run: nuget pack package -OutputFileNamesWithoutVersion -OutputDirectory build -Properties "version=${{ steps.version.outputs.prop }};" + run: nuget pack package -OutputFileNamesWithoutVersion -OutputDirectory build -Properties "version=${{ steps.version.outputs.prop }}" - name: Publish nuget run: | From d78c709ad778d3fe5f4849a35b4db07b74086120 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 01:43:59 -0400 Subject: [PATCH 05/16] Update release_build.yml --- .github/workflows/release_build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index 7ada7837..cb49febb 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -77,17 +77,17 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Change directory - run: | - cd Winch - name: Get version id: version uses: notiz-dev/github-action-json-property@release with: - path: mod_meta.json + path: Winch/mod_meta.json prop_path: Version - name: Set up nuget uses: NuGet/setup-nuget@v1.0.5 + - name: Change directory + run: | + cd Winch - name: Pack nuget run: nuget pack package -OutputFileNamesWithoutVersion -OutputDirectory build -Properties "version=${{ steps.version.outputs.prop }}" From 61f3efc3faec73939f0f9052eeb227604c3eba97 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 01:47:56 -0400 Subject: [PATCH 06/16] Update release_build.yml --- .github/workflows/release_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index cb49febb..1a1e9e19 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -89,7 +89,7 @@ jobs: run: | cd Winch - name: Pack nuget - run: nuget pack package -OutputFileNamesWithoutVersion -OutputDirectory build -Properties "version=${{ steps.version.outputs.prop }}" + run: nuget pack Winch.nuspec -OutputFileNamesWithoutVersion -OutputDirectory build -Properties "version=${{ steps.version.outputs.prop }}" - name: Publish nuget run: | From f4512d104ff5ec3f7dc44b5ce1793baf4dbe3c80 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 01:50:33 -0400 Subject: [PATCH 07/16] Update release_build.yml --- .github/workflows/release_build.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index 1a1e9e19..e09e8756 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -85,11 +85,8 @@ jobs: prop_path: Version - name: Set up nuget uses: NuGet/setup-nuget@v1.0.5 - - name: Change directory - run: | - cd Winch - name: Pack nuget - run: nuget pack Winch.nuspec -OutputFileNamesWithoutVersion -OutputDirectory build -Properties "version=${{ steps.version.outputs.prop }}" + run: nuget pack Winch/Winch.nuspec -OutputFileNamesWithoutVersion -OutputDirectory build -Properties "version=${{ steps.version.outputs.prop }}" - name: Publish nuget run: | From c9436cdf05ed1511db5441b7dde3c768a598d229 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 01:55:07 -0400 Subject: [PATCH 08/16] Update release_build.yml --- .github/workflows/release_build.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index e09e8756..ca9b3f1a 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -85,10 +85,15 @@ jobs: prop_path: Version - name: Set up nuget uses: NuGet/setup-nuget@v1.0.5 + - name: Download Winch Asset + uses: actions/download-artifact@v3 + with: + name: Winch + path: Winch/bin - name: Pack nuget - run: nuget pack Winch/Winch.nuspec -OutputFileNamesWithoutVersion -OutputDirectory build -Properties "version=${{ steps.version.outputs.prop }}" + run: nuget pack Winch/Winch.nuspec -OutputFileNamesWithoutVersion -OutputDirectory Winch/bin -Properties "version=${{ steps.version.outputs.prop }}" - name: Publish nuget run: | - nuget push "build/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json + nuget push "bin/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json From 522c08bed818342dc6eb5bc24d7a657f9f929bef Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 01:57:56 -0400 Subject: [PATCH 09/16] Update release_build.yml --- .github/workflows/release_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index ca9b3f1a..ececec8c 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -95,5 +95,5 @@ jobs: - name: Publish nuget run: | - nuget push "bin/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json + nuget push "Winch/bin/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json From a792a9886c5336c23ca330e4c71cc2636cb54d5e Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 02:02:37 -0400 Subject: [PATCH 10/16] Update release_build.yml --- .github/workflows/release_build.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index ececec8c..c19d7367 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -91,9 +91,7 @@ jobs: name: Winch path: Winch/bin - name: Pack nuget - run: nuget pack Winch/Winch.nuspec -OutputFileNamesWithoutVersion -OutputDirectory Winch/bin -Properties "version=${{ steps.version.outputs.prop }}" - + run: nuget pack Winch/Winch.nuspec -OutputFileNamesWithoutVersion -OutputDirectory bin -Properties "version=${{ steps.version.outputs.prop }}" - name: Publish nuget - run: | - nuget push "Winch/bin/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json + run: nuget push "bin/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json From 9bf9d351b73a98a23d2fe2e5e16361eb71acba5b Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 02:06:16 -0400 Subject: [PATCH 11/16] Update release_build.yml --- .github/workflows/release_build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index c19d7367..fe9dea11 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -92,6 +92,9 @@ jobs: path: Winch/bin - name: Pack nuget run: nuget pack Winch/Winch.nuspec -OutputFileNamesWithoutVersion -OutputDirectory bin -Properties "version=${{ steps.version.outputs.prop }}" + - run: dir + - run: cd Winch + - run: dir - name: Publish nuget run: nuget push "bin/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json From adea50e54140abbaf3d3bce5b3bd394f96b26de5 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 02:08:34 -0400 Subject: [PATCH 12/16] Update release_build.yml --- .github/workflows/release_build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index fe9dea11..89daff6a 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -95,6 +95,8 @@ jobs: - run: dir - run: cd Winch - run: dir + - run: cd bin + - run: dir - name: Publish nuget - run: nuget push "bin/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json + run: nuget push "Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json From e43aa8a2ef167d6a98dfc1cf89d52b18d44c06f4 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 02:11:44 -0400 Subject: [PATCH 13/16] Update release_build.yml --- .github/workflows/release_build.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index 89daff6a..cd5a7227 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -92,11 +92,8 @@ jobs: path: Winch/bin - name: Pack nuget run: nuget pack Winch/Winch.nuspec -OutputFileNamesWithoutVersion -OutputDirectory bin -Properties "version=${{ steps.version.outputs.prop }}" - - run: dir - - run: cd Winch - - run: dir - run: cd bin - - run: dir + | dir - name: Publish nuget - run: nuget push "Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json + run: nuget push "bin/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json From 3becf55824f3036b31aaf82899317e7dec6eb72e Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 02:24:28 -0400 Subject: [PATCH 14/16] Update release_build.yml --- .github/workflows/release_build.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index cd5a7227..01aa5104 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -91,9 +91,7 @@ jobs: name: Winch path: Winch/bin - name: Pack nuget - run: nuget pack Winch/Winch.nuspec -OutputFileNamesWithoutVersion -OutputDirectory bin -Properties "version=${{ steps.version.outputs.prop }}" - - run: cd bin - | dir + run: nuget pack Winch/Winch.nuspec -Properties "version=${{ steps.version.outputs.prop }}" - name: Publish nuget - run: nuget push "bin/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json + run: nuget push "bin/Release/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json From 63e73b38b580a006e611f5d4ccc85c4abd9549e2 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 02:26:57 -0400 Subject: [PATCH 15/16] Update release_build.yml --- .github/workflows/release_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index 01aa5104..80fd4a67 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -93,5 +93,5 @@ jobs: - name: Pack nuget run: nuget pack Winch/Winch.nuspec -Properties "version=${{ steps.version.outputs.prop }}" - name: Publish nuget - run: nuget push "bin/Release/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json + run: nuget push "Winch/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json From 53aad93faef4c3e2a21640c6f1299794ed6704fe Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 10 Oct 2023 02:30:04 -0400 Subject: [PATCH 16/16] Update release_build.yml --- .github/workflows/release_build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index 80fd4a67..f64fdb73 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -92,6 +92,7 @@ jobs: path: Winch/bin - name: Pack nuget run: nuget pack Winch/Winch.nuspec -Properties "version=${{ steps.version.outputs.prop }}" + - run: dir - name: Publish nuget - run: nuget push "Winch/Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json + run: nuget push "Winch.*.nupkg" -ApiKey ${{ secrets.NUGET_KEY }} -Source https://api.nuget.org/v3/index.json