diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index d2473fd..24b813e 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -23,15 +23,13 @@ jobs: run: dotnet restore src/TaxBaik.sln - name: Build solution - run: | - dotnet clean src/TaxBaik.sln -c Release - dotnet build src/TaxBaik.sln -c Release --no-restore + run: dotnet build src/TaxBaik.sln -c Release --no-restore -p:ContinuousIntegrationBuild=true - name: Test solution run: dotnet test src/TaxBaik.sln -c Release --no-build - name: Publish Web (auto-includes WASM from referenced TaxBaik.Web.Client) - run: dotnet publish src/TaxBaik.Web/ -c Release -o ./publish --no-restore + run: dotnet publish src/TaxBaik.Web/ -c Release -o ./publish --no-restore --no-build -p:PublishReadyToRun=true -p:SelfContained=false - name: Publish Proxy run: dotnet publish src/TaxBaik.Proxy/ -c Release -o ./publish/proxy