so much bloat (nodejs) for a GIT CLONE lmaooo???
Some checks failed
/ deploy (push) Failing after 26s
Some checks failed
/ deploy (push) Failing after 26s
This commit is contained in:
parent
4e3610c129
commit
056e040433
2 changed files with 7 additions and 1 deletions
|
@ -7,3 +7,8 @@ jobs:
|
||||||
- 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 }}
|
|
@ -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'))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue