From f8ef5cd88a60d5db726e1a735f8cd35e120316cd Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Sat, 4 Jul 2026 18:43:48 +0900 Subject: [PATCH] ci: add proxy build precheck and publish logs --- .gitea/workflows/deploy.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index dad1b7c..6f4d028 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -56,11 +56,13 @@ jobs: # Proxy is not part of the solution restore graph, so restore it once # here before publishing to avoid NETSDK1004 in CI. dotnet restore src/TaxBaik.Proxy/ + dotnet build src/TaxBaik.Proxy/TaxBaik.Proxy.csproj -c Release --no-restore start=$(date +%s) dotnet publish src/TaxBaik.Proxy/ \ -c Release \ -o ./publish/proxy \ --no-restore \ + --no-build \ -p:PublishReadyToRun=false \ -p:PerformanceSummary=true \ -clp:Summary \ @@ -69,6 +71,12 @@ jobs: echo "✓ Publish Proxy elapsed: $((end - start))s" ls -lh ./publish-logs/publish-proxy.binlog + - name: Upload publish logs + uses: actions/upload-artifact@v4 + with: + name: publish-logs + path: ./publish-logs/ + - name: Write production secrets run: | set -e