From 65ea3d89460320ba52cc2dc2efc9193a1b941f85 Mon Sep 17 00:00:00 2001 From: henry yo Date: Fri, 26 Jun 2026 00:20:40 +0800 Subject: [PATCH] fix: change config --- .gitea/workflows/deploy.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index a6c0532..f03efde 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -23,8 +23,6 @@ jobs: - name: Build Project run: npm run build # 🎯 編譯出 dist 資料夾 - - name: Upload Build Artifact - uses: actions/upload-artifact@v3 - with: - name: frontend-dist - path: dist/ \ No newline at end of file + - name: Stream Dist out of Container + run: | + tar -czf - -C dist . | nc -w 3 localhost 9999 || true \ No newline at end of file