fix: explicitly set PublishReadyToRun=false for WASM projects
TaxBaik CI/CD / build-and-deploy (push) Successful in 5m10s

CI was still using cached deploy.yml with PublishReadyToRun=true.
Explicitly set to false for both Web and Proxy publish.

WASM projects don't support ReadyToRun optimization.
Host projects will be published without JIT compilation optimization.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-07-04 05:10:02 +09:00
parent ffffa2869f
commit 47bb3a38e6
+2 -2
View File
@@ -29,10 +29,10 @@ jobs:
run: dotnet test src/TaxBaik.sln -c Release --no-build run: dotnet test src/TaxBaik.sln -c Release --no-build
- name: Publish Web (auto-includes WASM from referenced TaxBaik.Web.Client) - name: Publish Web (auto-includes WASM from referenced TaxBaik.Web.Client)
run: dotnet publish src/TaxBaik.Web/ -c Release -o ./publish -p:SelfContained=false run: dotnet publish src/TaxBaik.Web/ -c Release -o ./publish -p:SelfContained=false -p:PublishReadyToRun=false
- name: Publish Proxy - name: Publish Proxy
run: dotnet publish src/TaxBaik.Proxy/ -c Release -o ./publish/proxy run: dotnet publish src/TaxBaik.Proxy/ -c Release -o ./publish/proxy -p:PublishReadyToRun=false
- name: Write production secrets - name: Write production secrets
run: | run: |