fix: explicitly set PublishReadyToRun=false for WASM projects
TaxBaik CI/CD / build-and-deploy (push) Successful in 5m10s
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:
@@ -29,10 +29,10 @@ 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 -p:SelfContained=false
|
||||
run: dotnet publish src/TaxBaik.Web/ -c Release -o ./publish -p:SelfContained=false -p:PublishReadyToRun=false
|
||||
|
||||
- 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
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user