From a28d032b169c8c407ee6715b83414482cf9862c6 Mon Sep 17 00:00:00 2001 From: Otto the Minion Date: Mon, 27 Apr 2026 20:30:53 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20add=20working-directory:=20./backend=20t?= =?UTF-8?q?o=20dotnet=20steps=20=E2=80=94=20resolves=20MSB1003?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/dev.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/dev.yml b/.gitea/workflows/dev.yml index 3adde84..d4d3e71 100644 --- a/.gitea/workflows/dev.yml +++ b/.gitea/workflows/dev.yml @@ -20,12 +20,15 @@ jobs: - name: Restore backend run: dotnet restore + working-directory: ./backend - name: Build backend run: dotnet build --no-restore --configuration Release + working-directory: ./backend - name: Test backend run: dotnet test --no-build --configuration Release + working-directory: ./backend - name: Setup Node uses: actions/setup-node@v4 @@ -74,4 +77,4 @@ jobs: run: | curl -X POST -H 'Content-type: application/json' \ --data "{\"text\":\"🚨 Extrudex dev pipeline failed. Check Gitea Actions for details.\"}" \ - "${{ secrets.SLACK_WEBHOOK_URL }}" \ No newline at end of file + "${{ secrets.SLACK_WEBHOOK_URL }}"