diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index b0f04de..7c73a98 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -1,4 +1,3 @@ - name: Build and Deploy Svelte App on: @@ -32,15 +31,14 @@ jobs: npm run build # Deploy the build to your server (e.g., using SCP, Rsync, or FTP) - - name: Deploy to Strato.de (SFTP example) + - name: Deploy to Provider run: | sudo apt-get update # Update package list sudo apt-get install -y sshpass # Install sshpass for non-interactive SFTP echo "putting files to Strato server" sshpass -p "$DEPLOY_PASSWORD" sftp -o StrictHostKeyChecking=no "$DEPLOY_USER@$DEPLOY_SERVER:/" <