ci: skip redundant web publish build
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m3s

This commit is contained in:
2026-07-04 18:40:30 +09:00
parent 1534e7dd5b
commit 99a62904e8
+3 -2
View File
@@ -33,12 +33,13 @@ jobs:
set -e set -e
mkdir -p ./publish-logs mkdir -p ./publish-logs
start=$(date +%s) start=$(date +%s)
# Web publish is allowed to build because Blazor/Web SDK publish needs # Web has already been built above. Keep publish on the existing build
# publish-specific assets even after the solution build has completed. # outputs so we do not pay for a second full compile here.
dotnet publish src/TaxBaik.Web/ \ dotnet publish src/TaxBaik.Web/ \
-c Release \ -c Release \
-o ./publish \ -o ./publish \
--no-restore \ --no-restore \
--no-build \
-p:SelfContained=false \ -p:SelfContained=false \
-p:PublishReadyToRun=false \ -p:PublishReadyToRun=false \
-p:PerformanceSummary=true \ -p:PerformanceSummary=true \