Compare commits

..

3 Commits

Author SHA1 Message Date
975845421b docs: update changelog and header for version v1.3.86
Some checks failed
Release Workflow / detect-provider (push) Successful in 2s
Release Workflow / github-release (push) Has been skipped
Release Workflow / gitea-release (push) Failing after 2m55s
2025-02-23 15:29:14 +01:00
044ddbe0eb docs: update webpages for version v1.3.86 2025-02-23 15:29:14 +01:00
c385544d67 fix: streamline FTP credentials usage in Gitea release workflow 2025-02-23 15:29:10 +01:00
3 changed files with 12 additions and 7 deletions

View File

@ -220,10 +220,7 @@ jobs:
FTP_HOST: ${{ secrets.FTP_HOST }}
VERSION: ${{ steps.get_version.outputs.VERSION }}
run: |
echo $FTP_USER
export FTP_USER=${{ secrets.FTP_USER }}
echo $FTP_USER
echo ${{ secrets.FTP_USER }}
cd .pio/build/esp32dev
lftp -c "set ssl:verify-certificate no; \
@ -231,5 +228,5 @@ jobs:
set ftp:ssl-force true; \
set ssl:check-hostname false; \
set ftp:ssl-auth TLS; \
open -u $FTP_USER,$FTP_PASSWORD $FTP_HOST; \
put -O / filaman_full_$VERSION.bin -o filaman_full.bin"
open -u ${{ secrets.FTP_USER }},${{ secrets.FTP_PASSWORD }} ${{ secrets.FTP_HOST }}; \
put -O / filaman_full_${{ steps.get_version.outputs.VERSION }}.bin -o filaman_full.bin"

View File

@ -1,5 +1,13 @@
# Changelog
## [1.3.86] - 2025-02-23
### Changed
- update webpages for version v1.3.86
### Fixed
- streamline FTP credentials usage in Gitea release workflow
## [1.3.85] - 2025-02-23
### Added
- add FTP_USER variable for Gitea release workflow

View File

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