Maybe fixed action
Some checks failed
Upload via SSH / build (push) Failing after 30s
Upload via SSH / deploy (push) Has been skipped

This commit is contained in:
Bethlenfalvi, Lorinc (ext)
2026-01-05 22:32:15 +01:00
parent 6f687d22c2
commit 15aa4575bc

View File

@@ -20,8 +20,10 @@ jobs:
steps: steps:
- name: Checkout your repository using git - name: Checkout your repository using git
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Install, build, and upload your site - name: Install, build, and upload your site
uses: withastro/action@v3 run: npm run build
deploy: deploy:
needs: build needs: build
@@ -34,4 +36,5 @@ jobs:
remote-host: "lbfalvy.com" remote-host: "lbfalvy.com"
remote-user: "www-upload" remote-user: "www-upload"
ssh-private-key: ${{ secrets.SSH_KEYFILE }} ssh-private-key: ${{ secrets.SSH_KEYFILE }}
remote-path: "lbfalvy.com" remote-path: "lbfalvy.com"
local-path: "dist"