From 662e419bd073c4f7c1e301db6553fff9fde03592 Mon Sep 17 00:00:00 2001 From: "Bethlenfalvi, Lorinc (ext)" Date: Mon, 5 Jan 2026 22:32:15 +0100 Subject: [PATCH] Maybe fixed action --- .gitea/workflows/deploy.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index d403912..b936fa7 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -18,10 +18,12 @@ jobs: build: runs-on: ubuntu-latest steps: + - name: Install dependencies + run: npm install - name: Checkout your repository using git uses: actions/checkout@v4 - name: Install, build, and upload your site - uses: withastro/action@v3 + run: npm run build deploy: needs: build @@ -34,4 +36,5 @@ jobs: remote-host: "lbfalvy.com" remote-user: "www-upload" ssh-private-key: ${{ secrets.SSH_KEYFILE }} - remote-path: "lbfalvy.com" \ No newline at end of file + remote-path: "lbfalvy.com" + local-path: "dist" \ No newline at end of file