diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 8f3d6fb..cbe0a10 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -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: |