diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 24b813e..685b5aa 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -19,8 +19,8 @@ jobs: with: dotnet-version: '10.0' - - name: Restore dependencies - run: dotnet restore src/TaxBaik.sln + - name: Restore dependencies (include Linux runtime) + run: dotnet restore src/TaxBaik.sln -r linux-x64 - name: Build solution run: dotnet build src/TaxBaik.sln -c Release --no-restore -p:ContinuousIntegrationBuild=true @@ -29,7 +29,7 @@ jobs: 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 --no-build -p:PublishReadyToRun=true -p:SelfContained=false + run: dotnet publish src/TaxBaik.Web/ -c Release -o ./publish --no-restore -p:PublishReadyToRun=true -p:SelfContained=false - name: Publish Proxy run: dotnet publish src/TaxBaik.Proxy/ -c Release -o ./publish/proxy