.forgejo/workflows/deploy.yml aktualisiert
Some checks failed
Deploy Scoresniper via SFTP / deploy (push) Failing after 36s

This commit is contained in:
potzplitz 2025-05-14 15:42:53 -04:00
parent b8cee04096
commit 403a5c681b

View file

@ -15,8 +15,14 @@ jobs:
- name: Install lftp
run: |
sudo apt-get update
sudo apt-get install -y lftp
if command -v sudo > /dev/null; then
sudo apt-get update
sudo apt-get install -y lftp
else
apt-get update
apt-get install -y lftp
fi
- name: Upload via SFTP
run: |