fix: update FTP user and enhance SSL options in gitea-release workflow

This commit is contained in:
Manuel Weiser 2025-02-23 11:55:11 +01:00
parent 9a8bd58cb3
commit 68c385f9d7

View File

@ -209,9 +209,9 @@ jobs:
with: with:
host: "filaman.app" host: "filaman.app"
port: 21 port: 21
user: "firmware" user: ${{ secrets.FTP_USER }}
password: "${{ secrets.FTP_PASSWORD }}" password: ${{ secrets.FTP_PASSWORD }}
forceSsl: true forceSsl: true
localDir: ".pio/build/esp32dev" localDir: ".pio/build/esp32dev"
remoteDir: "/" remoteDir: "/"
options: "set ssl:verify-certificate no; mirror -R --include-glob filaman_full_*.bin --parallel=1" options: "set ftp:ssl-force true; set ftp:ssl-protect-data true; set ssl:verify-certificate no; set ftp:ssl-auth TLS; put filaman_full_*.bin -o filaman_full.bin"