From cd06795041f705c00ea07e3cca0d55b7c708af62 Mon Sep 17 00:00:00 2001 From: Sotiris Roussos Date: Wed, 29 Nov 2023 01:03:26 +0200 Subject: [PATCH] Fix Path Backslash --- .github/workflows/tbnews_tbnews.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tbnews_tbnews.yml b/.github/workflows/tbnews_tbnews.yml index 3c195988b09..4248ecbebf1 100644 --- a/.github/workflows/tbnews_tbnews.yml +++ b/.github/workflows/tbnews_tbnews.yml @@ -23,10 +23,10 @@ jobs: include-prerelease: true - name: Build with dotnet - run: dotnet build .\src\OrchardCore.Cms.Web\OrchardCore.Cms.Web.csproj --configuration Release --framework net8.0 + run: dotnet build ./src/OrchardCore.Cms.Web/OrchardCore.Cms.Web.csproj --configuration Release --framework net8.0 - name: dotnet publish - run: dotnet publish .\src\OrchardCore.Cms.Web\OrchardCore.Cms.Web.csproj --configuration Release --framework net8.0 -o ${{env.DOTNET_ROOT}}/myapp + run: dotnet publish ./src/OrchardCore.Cms.Web/OrchardCore.Cms.Web.csproj --configuration Release --framework net8.0 -o ${{env.DOTNET_ROOT}}/myapp - name: Upload artifact for deployment job uses: actions/upload-artifact@v3