From a24b5d0369cab66efc5f11ddce45f32109bed81c Mon Sep 17 00:00:00 2001 From: Kim Date: Mon, 23 Oct 2023 14:28:13 +0200 Subject: [PATCH] further tweaks to workflows --- .gitea/workflows/prod-deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/prod-deploy.yaml b/.gitea/workflows/prod-deploy.yaml index cacc8d0d8..1bf1d88b1 100644 --- a/.gitea/workflows/prod-deploy.yaml +++ b/.gitea/workflows/prod-deploy.yaml @@ -15,11 +15,11 @@ jobs: - run: echo " The ${{ gitea.repository }} repository has been cloned to the runner." - name: Build backend uses: actions/setup-dotnet@v3 - run: | + - 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: | + - run: | npm run build - name: copy everything to Production run: |