Compare commits

..

No commits in common. "d2b40daaca41b24faae5da6a021d83a041b6060b" and "9fb82fe51e93ce11e0711b5d1296e829535f1b4d" have entirely different histories.

3 changed files with 4 additions and 16 deletions

View File

@ -12,9 +12,6 @@ on:
FTP_USER: FTP_USER:
description: 'FTP User for firmware upload' description: 'FTP User for firmware upload'
required: true required: true
FTP_HOST:
description: 'FTP Host for firmware upload'
required: true
jobs: jobs:
create-release: create-release:
@ -217,14 +214,13 @@ jobs:
env: env:
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }} FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
FTP_USER: ${{ secrets.FTP_USER }} FTP_USER: ${{ secrets.FTP_USER }}
FTP_HOST: ${{ secrets.FTP_HOST }}
VERSION: ${{ steps.get_version.outputs.VERSION }} VERSION: ${{ steps.get_version.outputs.VERSION }}
run: | run: |
cd .pio/build/esp32dev cd .pio/build/esp32dev
lftp -c "set ssl:verify-certificate no; \ lftp -c 'set ssl:verify-certificate no; \
set ftp:ssl-protect-data true; \ set ftp:ssl-protect-data true; \
set ftp:ssl-force true; \ set ftp:ssl-force true; \
set ssl:check-hostname false; \ set ssl:check-hostname false; \
set ftp:ssl-auth TLS; \ set ftp:ssl-auth TLS; \
open -u $FTP_USER,$FTP_PASSWORD $FTP_HOST; \ open -u '$FTP_USER','$FTP_PASSWORD' ftp://filaman.app:21; \
put -O / filaman_full_$VERSION.bin -o filaman_full.bin" put -O / filaman_full_'$VERSION'.bin -o filaman_full.bin'

View File

@ -1,13 +1,5 @@
# Changelog # Changelog
## [1.3.84] - 2025-02-23
### Added
- add FTP_HOST variable for firmware upload in Gitea release workflow
### Changed
- update webpages for version v1.3.84
## [1.3.83] - 2025-02-23 ## [1.3.83] - 2025-02-23
### Changed ### Changed
- update webpages for version v1.3.83 - update webpages for version v1.3.83

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.84" version = "1.3.83"
## ##
[env:esp32dev] [env:esp32dev]
platform = espressif32 platform = espressif32