Compare commits

...

9 Commits

Author SHA1 Message Date
55e89948bb docs: update changelog and header for version v1.3.79
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 2m47s
2025-02-23 14:36:19 +01:00
6c5e8c4d07 docs: update webpages for version v1.3.79 2025-02-23 14:36:19 +01:00
4f79700d74 feat: add FTP_USER input for firmware upload in Gitea release workflow 2025-02-23 14:36:14 +01:00
1b4fecf409 docs: update changelog and header for version v1.3.78
Some checks failed
Release Workflow / detect-provider (push) Successful in 4s
Release Workflow / github-release (push) Has been skipped
Release Workflow / gitea-release (push) Failing after 3m7s
2025-02-23 12:35:14 +01:00
89a6101d97 docs: update webpages for version v1.3.78 2025-02-23 12:35:14 +01:00
ee45a74fee fix: change FTP protocol from FTPS to FTP for file upload in workflow 2025-02-23 12:35:09 +01:00
db365aba3c docs: update changelog and header for version v1.3.77
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 2m49s
2025-02-23 12:05:24 +01:00
63cdfaee6c docs: update webpages for version v1.3.77 2025-02-23 12:05:24 +01:00
eb2e360c35 fix: replace ncftp with lftp for secure firmware upload 2025-02-23 12:05:19 +01:00
3 changed files with 38 additions and 11 deletions

View File

@ -9,6 +9,9 @@ on:
FTP_PASSWORD: FTP_PASSWORD:
description: 'FTP Password for firmware upload' description: 'FTP Password for firmware upload'
required: true required: true
FTP_USER:
description: 'FTP User for firmware upload'
required: true
jobs: jobs:
create-release: create-release:
@ -203,18 +206,18 @@ jobs:
fi fi
done done
- name: Install ncftp - name: Install lftp
run: sudo apt-get install -y ncftp run: sudo apt-get install -y lftp
- name: Upload Firmware via FTP - name: Upload Firmware via FTP
if: success() if: success()
run: | run: |
VERSION=$(grep '^version = ' platformio.ini | cut -d'"' -f2) VERSION=$(grep '^version = ' platformio.ini | cut -d'"' -f2)
cd .pio/build/esp32dev cd .pio/build/esp32dev
curl --ftp-ssl-reqd \ lftp -c "set ssl:verify-certificate no; \
--ftp-ssl-control \ set ftp:ssl-protect-data true; \
--ssl-reqd \ set ftp:ssl-force true; \
--insecure \ set ssl:check-hostname false; \
--user "${{ secrets.FTP_USER }}:${{ secrets.FTP_PASSWORD }}" \ set ftp:ssl-auth TLS; \
-T "filaman_full_${VERSION}.bin" \ open -u ${{ secrets.FTP_USER }},${{ secrets.FTP_PASSWORD }} ftp://filaman.app:21; \
"ftps://filaman.app:21/filaman_full.bin" put -O / filaman_full_${VERSION}.bin -o filaman_full.bin"

View File

@ -1,5 +1,29 @@
# Changelog # Changelog
## [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
### Fixed
- replace ncftp with lftp for secure firmware upload
## [1.3.76] - 2025-02-23 ## [1.3.76] - 2025-02-23
### Changed ### Changed
- update webpages for version v1.3.76 - update webpages for version v1.3.76

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