From 68c385f9d7a2bb61484bc8c9c8d45cdc95428c8d Mon Sep 17 00:00:00 2001 From: Manuel Weiser Date: Sun, 23 Feb 2025 11:55:11 +0100 Subject: [PATCH] fix: update FTP user and enhance SSL options in gitea-release workflow --- .github/workflows/gitea-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gitea-release.yml b/.github/workflows/gitea-release.yml index 918d6b9..3abd0d5 100644 --- a/.github/workflows/gitea-release.yml +++ b/.github/workflows/gitea-release.yml @@ -209,9 +209,9 @@ jobs: with: host: "filaman.app" port: 21 - user: "firmware" - password: "${{ secrets.FTP_PASSWORD }}" + user: ${{ secrets.FTP_USER }} + password: ${{ secrets.FTP_PASSWORD }} forceSsl: true localDir: ".pio/build/esp32dev" remoteDir: "/" - options: "set ssl:verify-certificate no; mirror -R --include-glob filaman_full_*.bin --parallel=1" \ No newline at end of file + 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" \ No newline at end of file