From 22fdea4f09ef30cf67a37858bd11d72484f09d2c Mon Sep 17 00:00:00 2001 From: Lev Khobotov Date: Sat, 31 Aug 2024 12:29:15 +0300 Subject: [PATCH] Fix publish parameters --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 52b10aa..4a840c5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,7 +68,7 @@ jobs: - name: Build and publish run: | dotnet build --configuration Release - dotnet publish -c Release -o ${{ env.AZURE_WEBAPP_PROJECT_PATH }} -maxcpucount:1 + dotnet publish -c Release --property:PublishDir=${{ env.AZURE_WEBAPP_PROJECT_PATH }} -maxcpucount:1 # Deploy to Azure Web apps - name: 'Run Azure webapp deploy action using publish profile credentials'