Compare commits

...

3 Commits

Author SHA1 Message Date
6700a1761f docs: update changelog and header for version v1.3.82
Some checks failed
Release Workflow / detect-provider (push) Successful in 3s
Release Workflow / github-release (push) Has been skipped
Release Workflow / gitea-release (push) Failing after 2m51s
2025-02-23 14:59:03 +01:00
7207f36e06 docs: update webpages for version v1.3.82 2025-02-23 14:59:03 +01:00
e79bee3381 feat: update Gitea release workflow to use variable interpolation for FTP credentials 2025-02-23 14:58:57 +01:00
3 changed files with 12 additions and 4 deletions

View File

@ -217,10 +217,10 @@ jobs:
VERSION: ${{ steps.get_version.outputs.VERSION }}
run: |
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-force true; \
set ssl:check-hostname false; \
set ftp:ssl-auth TLS; \
open -u ${FTP_USER},${FTP_PASSWORD} ftp://filaman.app:21; \
put -O / filaman_full_${VERSION}.bin -o filaman_full.bin"
open -u '"$FTP_USER"','"$FTP_PASSWORD"' ftp://filaman.app:21; \
put -O / filaman_full_'"$VERSION"'.bin -o filaman_full.bin'

View File

@ -1,5 +1,13 @@
# Changelog
## [1.3.82] - 2025-02-23
### Added
- update Gitea release workflow to use variable interpolation for FTP credentials
### Changed
- update webpages for version v1.3.82
## [1.3.81] - 2025-02-23
### Added
- update Gitea release workflow to use environment variables for FTP credentials and version

View File

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