From acfe214631f197cc3bbd263593f1064aa51c3533 Mon Sep 17 00:00:00 2001 From: LTS <127939494+LTS-FFXIV@users.noreply.github.com> Date: Fri, 13 Sep 2024 15:09:59 -0500 Subject: [PATCH] this shit isnt linux? --- .github/workflows/publish.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 6191345ec..b4c50540e 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -38,16 +38,15 @@ jobs: run: dotnet restore RotationSolver/RotationSolver.csproj - name: Build Plugin - run: dotnet build --no-restore -c Release RotationSolver/RotationSolver.csproj -p:AssemblyVersion=${{ env.tag }} -p:FileVersion=${{ env.tag }} -p:PackageVersion=${{ env.tag }} -p:InformationalVersion=${{ env.tag }} --output ./build - + run: dotnet build --no-restore -c Release RotationSolver/RotationSolver.csproj -p:AssemblyVersion=${{ env.tag }} -p:FileVersion=${{ env.tag }} -p:PackageVersion=${{ env.tag }} -p:InformationalVersion=${{ env.tag }} --output .\build - name: Push Nuget Package - run: dotnet nuget push ./build/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json + run: dotnet nuget push .\build\*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json - name: Zip Plugin - run: Compress-Archive -Path ./build/* -DestinationPath ./build/RotationSolver.zip + run: Compress-Archive -Path .\build\* -DestinationPath .\build\RotationSolver.zip - name: Publish Plugin uses: softprops/action-gh-release@v2 with: - files: ./build/RotationSolver.zip + files: .\build\RotationSolver.zip token: ${{ secrets.GITHUB_TOKEN }}