From ac902b48c9a6e523d4b0b364ab6deae4dbe174fc Mon Sep 17 00:00:00 2001 From: Hermes Date: Thu, 21 May 2026 15:26:25 +0000 Subject: [PATCH] ci: fix artifact steps for shell executor, simplify deploy --- .gitea/workflows/ci.yaml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 6419c45..4a8e91d 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -42,11 +42,10 @@ jobs: cache: npm - run: npm ci - run: npm run build - - name: Upload build artifacts - uses: actions/upload-artifact@v4 - with: - name: dist - path: dist/ + - name: Verify build output + run: | + du -sh dist/ + echo "Build successful" deploy: needs: build @@ -54,12 +53,7 @@ jobs: if: github.ref == 'refs/heads/main' && github.event_name == 'push' environment: production steps: - - uses: actions/download-artifact@v4 - with: - name: dist - path: dist/ - - name: Deploy static files + - name: Deploy placeholder run: | - echo "Deploying to production..." echo "Deploy target: /var/www/remote-rig/" - echo "Placeholder — configure deploy target before merging to main" + echo "Configure deploy command before merging to main"