Compare commits

..

1 Commits

Author SHA1 Message Date
Gianmarco
e0b3c6e030 ci: fixed CI on main
Some checks failed
Build Site Main / Build-Site (push) Failing after 1m29s
Build Site Develop / Build-Site (push) Failing after 1m36s
2025-06-20 23:50:42 +02:00

View File

@ -16,13 +16,12 @@ jobs:
- run: npm install - run: npm install
- run: npm run build - run: npm run build
- name: Upload via lftp (SFTP) - name: Upload via SFTP
uses: xarses/lftp-upload-action@v0.2.0 uses: appleboy/scp-action@master
with: with:
host: ${{ secrets.SFTP_HOST }} host: ${{ secrets.SFTP_HOST }}
port: 22
username: ${{ secrets.SFTP_USER }} username: ${{ secrets.SFTP_USER }}
password: ${{ secrets.SFTP_PASSWORD }} password: ${{ secrets.SFTP_PASSWORD }}
local_path: build/ port: 22
remote_path: www source: "build/*"
target: "/home/pettinattk/www"