From 780359a944be33f05a4d48fbafa0b591caa1ec1f Mon Sep 17 00:00:00 2001 From: Tim Hess Date: Wed, 7 Feb 2024 13:42:51 -0600 Subject: [PATCH] specify .csproj during dotnet publish --- .github/workflows/build-and-stage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-stage.yml b/.github/workflows/build-and-stage.yml index fb71a84..58ef32b 100644 --- a/.github/workflows/build-and-stage.yml +++ b/.github/workflows/build-and-stage.yml @@ -48,7 +48,7 @@ jobs: REPO_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - name: dotnet publish - run: dotnet publish -o publish --no-build + run: dotnet publish src/NetCoreToolService/Steeltoe.NetCoreToolService.csproj -o publish - name: Upload artifact for deployment job if: github.event_name != 'PullRequest'