Compare commits

..

No commits in common. "db365aba3c52d4a1f3dfe73921e45d3deb1de214" and "7d578640e2c31cecd5e6d47bf856939aba80b14f" have entirely different histories.

3 changed files with 11 additions and 19 deletions

View File

@ -203,18 +203,18 @@ jobs:
fi fi
done done
- name: Install lftp - name: Install ncftp
run: sudo apt-get install -y lftp run: sudo apt-get install -y ncftp
- name: Upload Firmware via FTP - name: Upload Firmware via FTP
if: success() if: success()
run: | run: |
VERSION=$(grep '^version = ' platformio.ini | cut -d'"' -f2) VERSION=$(grep '^version = ' platformio.ini | cut -d'"' -f2)
cd .pio/build/esp32dev cd .pio/build/esp32dev
lftp -c "set ssl:verify-certificate no; \ curl --ftp-ssl-reqd \
set ftp:ssl-protect-data true; \ --ftp-ssl-control \
set ftp:ssl-force true; \ --ssl-reqd \
set ssl:check-hostname false; \ --insecure \
set ftp:ssl-auth TLS; \ --user "${{ secrets.FTP_USER }}:${{ secrets.FTP_PASSWORD }}" \
open -u ${{ secrets.FTP_USER }},${{ secrets.FTP_PASSWORD }} ftps://filaman.app:21; \ -T "filaman_full_${VERSION}.bin" \
put -O / filaman_full_${VERSION}.bin -o filaman_full.bin" "ftps://filaman.app:21/filaman_full.bin"

View File

@ -1,13 +1,5 @@
# Changelog # Changelog
## [1.3.77] - 2025-02-23
### Changed
- update webpages for version v1.3.77
### Fixed
- replace ncftp with lftp for secure firmware upload
## [1.3.76] - 2025-02-23 ## [1.3.76] - 2025-02-23
### Changed ### Changed
- update webpages for version v1.3.76 - update webpages for version v1.3.76

View File

@ -9,7 +9,7 @@
; https://docs.platformio.org/page/projectconf.html ; https://docs.platformio.org/page/projectconf.html
[common] [common]
version = "1.3.77" version = "1.3.76"
## ##
[env:esp32dev] [env:esp32dev]
platform = espressif32 platform = espressif32