From 120a2578e6fb3b04ca8ddd57ef27e4c01c9e6c9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Gabriel?= Date: Thu, 14 Mar 2024 14:53:37 -0300 Subject: [PATCH] Update push-hostinger.yml --- .github/workflows/push-hostinger.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push-hostinger.yml b/.github/workflows/push-hostinger.yml index 37f4eae..c1f1534 100644 --- a/.github/workflows/push-hostinger.yml +++ b/.github/workflows/push-hostinger.yml @@ -28,8 +28,11 @@ jobs: - name: Restore dependencies run: dotnet restore src/Monambike.Website.sln - - name: Build and publish - run: dotnet publish src/Monambike.Website.sln -c Release -f net8.0 -r browser-wasm --self-contained --output ./publish-folder + - name: Build and publish (www) + run: dotnet publish src/Monambike.Web/Monambike.Web.csproj -c Release -f net8.0 -r browser-wasm --self-contained --output ./publish-folder + + - name: Build and publish (links) + run: dotnet publish src/Monambike.Links/Monambike.Links/Monambike.Links.csproj -c Release -f net8.0 -r browser-wasm --self-contained --output ./publish-folder/links - name: Deploy via FTP uses: SamKirkland/FTP-Deploy-Action@v4.3.4