From 49325f9ca004f6a391a5eeb7ba1e4f9f22f40774 Mon Sep 17 00:00:00 2001 From: Kim Date: Mon, 23 Oct 2023 14:33:44 +0200 Subject: [PATCH] Tweaks to workflow --- .gitea/workflows/stage-deploy.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/stage-deploy.yaml b/.gitea/workflows/stage-deploy.yaml index b9a864faa..b50984b78 100644 --- a/.gitea/workflows/stage-deploy.yaml +++ b/.gitea/workflows/stage-deploy.yaml @@ -14,11 +14,10 @@ jobs: uses: actions/checkout@v3 - run: echo " The ${{ gitea.repository }} repository has been cloned to the runner." - name: Build backend - - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.x.x' - - run: | - dotnet publish ${{ gitea.workspace }}/csharp/App/Backend/Backend.csproj -c Release -r linux-x64 --self-contained true -p:PublishTrimmed=false + dotnet-version: '7.0.x' + run: dotnet publish ${{ gitea.workspace }}/csharp/App/Backend/Backend.csproj -c Release -r linux-x64 --self-contained true -p:PublishTrimmed=false - name: Build frontend uses: actions/setup-node@v3 run: |