From 9a0e2ae7f09e1fbed729ed51f39c13fc79ec5a14 Mon Sep 17 00:00:00 2001 From: Joshua Sirusstara <71873035+joshuasir@users.noreply.github.com> Date: Tue, 29 Oct 2024 12:50:58 +0700 Subject: [PATCH] Update main_karcisweb.yml --- .github/workflows/main_karcisweb.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main_karcisweb.yml b/.github/workflows/main_karcisweb.yml index 36490ae..7264d3f 100644 --- a/.github/workflows/main_karcisweb.yml +++ b/.github/workflows/main_karcisweb.yml @@ -43,14 +43,14 @@ jobs: dotnet-version: '3.1.x' - name: List files to debug run: | - dir KarcisApp + dir ./KarcisApp - name: Build with dotnet - working-directory: ./KarcisApp # Replace with your folder path + working-directory: KarcisApp # Replace with your folder path run: | cd - dotnet restore ./Karcis.sln - dotnet build ./Karcis.sln --configuration Release - dotnet publish ./Karcis.sln -c Release -o ${{env.DOTNET_ROOT}}/myapp + dotnet restore Karcis.sln + dotnet build Karcis.sln --configuration Release + dotnet publish Karcis.sln -c Release -o ${{env.DOTNET_ROOT}}/myapp - name: Upload artifact for deployment job uses: actions/upload-artifact@v4