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) - name: Publish Web (auto-includes WASM from referenced TaxBaik.Web.Client)
run: | run: |
set -e set -e
mkdir -p ./publish-logs
start=$(date +%s) start=$(date +%s)
dotnet publish src/TaxBaik.Web/ \ dotnet publish src/TaxBaik.Web/ \
-c Release \ -c Release \
@@ -39,13 +40,16 @@ jobs:
-p:SelfContained=false \ -p:SelfContained=false \
-p:PublishReadyToRun=false \ -p:PublishReadyToRun=false \
-p:PerformanceSummary=true \ -p:PerformanceSummary=true \
-clp:Summary -clp:Summary \
-bl:./publish-logs/publish-web.binlog
end=$(date +%s) end=$(date +%s)
echo "✓ Publish Web elapsed: $((end - start))s" echo "✓ Publish Web elapsed: $((end - start))s"
ls -lh ./publish-logs/publish-web.binlog
- name: Publish Proxy - name: Publish Proxy
run: | run: |
set -e set -e
mkdir -p ./publish-logs
start=$(date +%s) start=$(date +%s)
dotnet publish src/TaxBaik.Proxy/ \ dotnet publish src/TaxBaik.Proxy/ \
-c Release \ -c Release \
@@ -53,9 +57,11 @@ jobs:
--no-restore \ --no-restore \
-p:PublishReadyToRun=false \ -p:PublishReadyToRun=false \
-p:PerformanceSummary=true \ -p:PerformanceSummary=true \
-clp:Summary -clp:Summary \
-bl:./publish-logs/publish-proxy.binlog
end=$(date +%s) end=$(date +%s)
echo "✓ Publish Proxy elapsed: $((end - start))s" echo "✓ Publish Proxy elapsed: $((end - start))s"
ls -lh ./publish-logs/publish-proxy.binlog
- name: Write production secrets - name: Write production secrets
run: | run: |