Compare commits

..

No commits in common. "975845421b1490e5a172be08fd5454d9c77c2afe" and "c6cfd85687c67881cdd9388ac6fb245165f45afd" have entirely different histories.

3 changed files with 7 additions and 12 deletions

View File

@ -220,7 +220,10 @@ jobs:
FTP_HOST: ${{ secrets.FTP_HOST }} FTP_HOST: ${{ secrets.FTP_HOST }}
VERSION: ${{ steps.get_version.outputs.VERSION }} VERSION: ${{ steps.get_version.outputs.VERSION }}
run: | run: |
echo ${{ secrets.FTP_USER }} echo $FTP_USER
export FTP_USER=${{ secrets.FTP_USER }}
echo $FTP_USER
cd .pio/build/esp32dev cd .pio/build/esp32dev
lftp -c "set ssl:verify-certificate no; \ lftp -c "set ssl:verify-certificate no; \
@ -228,5 +231,5 @@ jobs:
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 ${{ secrets.FTP_USER }},${{ secrets.FTP_PASSWORD }} ${{ secrets.FTP_HOST }}; \ open -u $FTP_USER,$FTP_PASSWORD $FTP_HOST; \
put -O / filaman_full_${{ steps.get_version.outputs.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.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 ## [1.3.85] - 2025-02-23
### Added ### Added
- add FTP_USER variable for Gitea release workflow - add FTP_USER variable for Gitea release workflow

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