.forgejo/workflows/deploy.yml aktualisiert
Some checks failed
Deploy Scoresniper via SFTP / deploy (push) Failing after 36s
Some checks failed
Deploy Scoresniper via SFTP / deploy (push) Failing after 36s
This commit is contained in:
parent
b8cee04096
commit
403a5c681b
1 changed files with 8 additions and 2 deletions
|
@ -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: |
|
||||
|
|
Loading…
Reference in a new issue