so much bloat (nodejs) for a GIT CLONE lmaooo???
Some checks failed
/ deploy (push) Failing after 26s

This commit is contained in:
Minecon724 2024-05-12 17:59:40 +02:00
parent 4e3610c129
commit 056e040433
Signed by: Minecon724
GPG key ID: 3CCC4D267742C8E8
2 changed files with 7 additions and 1 deletions

View file

@ -6,4 +6,9 @@ jobs:
steps: steps:
- run: git clone https://git.724.rocks/Minecon724/dn42-info . - run: git clone https://git.724.rocks/Minecon724/dn42-info .
- run: pip install -r requirements.txt - run: pip install -r requirements.txt
- run: python deploy.py - run: python deploy.py
env:
FTP_SERVER: ${{ secrets.FTP_SERVER }}
FTP_USER: ${{ secrets.FTP_USER }}
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
ACCESS_KEY: ${{ secrets.ACCESS_KEY }}

View file

@ -6,6 +6,7 @@ from io import BytesIO
# init ftp # init ftp
print(getenv('FTP_SERVER'))
ftp = FTP(getenv('FTP_SERVER')) ftp = FTP(getenv('FTP_SERVER'))
ftp.login(getenv('FTP_USER'), getenv('FTP_PASSWORD')) ftp.login(getenv('FTP_USER'), getenv('FTP_PASSWORD'))