From 5b697d94148abbdc9920dea889516e32cc7fef43 Mon Sep 17 00:00:00 2001 From: Sam Baas Date: Tue, 12 Sep 2023 14:30:02 +0200 Subject: [PATCH] predetermined publish path --- .github/workflows/build-dotnet.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-dotnet.yml b/.github/workflows/build-dotnet.yml index e22398a..241ce19 100644 --- a/.github/workflows/build-dotnet.yml +++ b/.github/workflows/build-dotnet.yml @@ -24,12 +24,9 @@ jobs: run: dotnet restore TileBakeTool/TileBakeTool.csproj - name: Build Release run: | - dotnet build TileBakeTool/TileBakeTool.csproj --no-restore --verbosity detailed --configuration Release - echo "Build output path: $(pwd)/TileBakeTool/bin/Release/" - - name: Test - run: dotnet test TileBakeTool/TileBakeTool.csproj --no-build --verbosity detailed + dotnet build TileBakeTool/TileBakeTool.csproj --no-restore --verbosity normal --configuration Release --output ./publish - name: Publish Build Artifacts uses: actions/upload-artifact@v2 with: name: build-artifacts - path: $(pwd)/TileBakeTool/bin/Release/ + path: ./publish