Compare commits

...

9 Commits

3 changed files with 32 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:
@ -208,6 +211,9 @@ jobs:
- name: Upload Firmware via FTP
if: success()
secrets:
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
FTP_USER: ${{ secrets.FTP_USER }}
run: |
VERSION=$(grep '^version = ' platformio.ini | cut -d'"' -f2)
cd .pio/build/esp32dev
@ -216,5 +222,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,29 @@
# Changelog
## [1.3.80] - 2025-02-23
### Added
- add FTP_USER and FTP_PASSWORD secrets for firmware upload in Gitea release workflow
### Changed
- update webpages for version v1.3.80
## [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.80"
##
[env:esp32dev]
platform = espressif32