Compare commits

..

6 Commits

3 changed files with 21 additions and 2 deletions

@ -9,6 +9,9 @@ on:
FTP_PASSWORD:
description: 'FTP Password for firmware upload'
required: true
FTP_USER:
description: 'FTP User for firmware upload'
required: true
jobs:
create-release:
@ -216,5 +219,5 @@ jobs:
set ftp:ssl-force true; \
set ssl:check-hostname false; \
set ftp:ssl-auth TLS; \
open -u ${{ secrets.FTP_USER }},${{ secrets.FTP_PASSWORD }} ftps://filaman.app:21; \
open -u ${{ secrets.FTP_USER }},${{ secrets.FTP_PASSWORD }} ftp://filaman.app:21; \
put -O / filaman_full_${VERSION}.bin -o filaman_full.bin"

@ -1,5 +1,21 @@
# Changelog
## [1.3.79] - 2025-02-23
### Added
- add FTP_USER input for firmware upload in Gitea release workflow
### Changed
- update webpages for version v1.3.79
## [1.3.78] - 2025-02-23
### Changed
- update webpages for version v1.3.78
### Fixed
- change FTP protocol from FTPS to FTP for file upload in workflow
## [1.3.77] - 2025-02-23
### Changed
- update webpages for version v1.3.77

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