Compare commits

..

No commits in common. "c3918f075b65882b62bae3cd06ca90c43f97e7df" and "13a771682faf6e8f8ff3148338f017321bf371d5" have entirely different histories.

3 changed files with 4 additions and 12 deletions

View File

@ -211,16 +211,16 @@ jobs:
- name: Upload Firmware via FTP
if: success()
env:
secrets:
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
FTP_USER: ${{ secrets.FTP_USER }}
VERSION: ${{ steps.get_version.outputs.VERSION }}
run: |
VERSION=$(grep '^version = ' platformio.ini | cut -d'"' -f2)
cd .pio/build/esp32dev
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; \
open -u ${{ secrets.FTP_USER }},${{ secrets.FTP_PASSWORD }} ftp://filaman.app:21; \
put -O / filaman_full_${VERSION}.bin -o filaman_full.bin"

View File

@ -1,13 +1,5 @@
# Changelog
## [1.3.81] - 2025-02-23
### Added
- update Gitea release workflow to use environment variables for FTP credentials and version
### Changed
- update webpages for version v1.3.81
## [1.3.80] - 2025-02-23
### Added
- add FTP_USER and FTP_PASSWORD secrets for firmware upload in Gitea release workflow

View File

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