chore: add publish binlog timing
TaxBaik CI/CD / build-and-deploy (push) Has been cancelled

This commit is contained in:
2026-07-04 11:10:51 +09:00
parent ff3fa7d22a
commit 65027c7862
+8 -2
View File
@@ -31,6 +31,7 @@ jobs:
- name: Publish Web (auto-includes WASM from referenced TaxBaik.Web.Client)
run: |
set -e
mkdir -p ./publish-logs
start=$(date +%s)
dotnet publish src/TaxBaik.Web/ \
-c Release \
@@ -39,13 +40,16 @@ jobs:
-p:SelfContained=false \
-p:PublishReadyToRun=false \
-p:PerformanceSummary=true \
-clp:Summary
-clp:Summary \
-bl:./publish-logs/publish-web.binlog
end=$(date +%s)
echo "✓ Publish Web elapsed: $((end - start))s"
ls -lh ./publish-logs/publish-web.binlog
- name: Publish Proxy
run: |
set -e
mkdir -p ./publish-logs
start=$(date +%s)
dotnet publish src/TaxBaik.Proxy/ \
-c Release \
@@ -53,9 +57,11 @@ jobs:
--no-restore \
-p:PublishReadyToRun=false \
-p:PerformanceSummary=true \
-clp:Summary
-clp:Summary \
-bl:./publish-logs/publish-proxy.binlog
end=$(date +%s)
echo "✓ Publish Proxy elapsed: $((end - start))s"
ls -lh ./publish-logs/publish-proxy.binlog
- name: Write production secrets
run: |