.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
|
- name: Install lftp
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
if command -v sudo > /dev/null; then
|
||||||
sudo apt-get install -y lftp
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y lftp
|
||||||
|
else
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y lftp
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
- name: Upload via SFTP
|
- name: Upload via SFTP
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue