Compare commits

...

6 Commits

Author SHA1 Message Date
7d578640e2 docs: update changelog and header for version v1.3.76
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 2m44s
2025-02-23 12:00:38 +01:00
b006533a91 docs: update webpages for version v1.3.76 2025-02-23 12:00:37 +01:00
9fa7526623 fix: replace FTP action with curl for secure firmware upload and install ncftp 2025-02-23 12:00:33 +01:00
dfbb2fbd9b docs: update changelog and header for version v1.3.75
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 2m40s
2025-02-23 11:55:20 +01:00
0302158449 docs: update webpages for version v1.3.75 2025-02-23 11:55:20 +01:00
68c385f9d7 fix: update FTP user and enhance SSL options in gitea-release workflow 2025-02-23 11:55:11 +01:00
3 changed files with 30 additions and 11 deletions

View File

@ -203,15 +203,18 @@ jobs:
fi fi
done done
- name: Install ncftp
run: sudo apt-get install -y ncftp
- name: Upload Firmware via FTP - name: Upload Firmware via FTP
if: success() if: success()
uses: sebastianpopp/ftp-action@releases/v2 run: |
with: VERSION=$(grep '^version = ' platformio.ini | cut -d'"' -f2)
host: "filaman.app" cd .pio/build/esp32dev
port: 21 curl --ftp-ssl-reqd \
user: "firmware" --ftp-ssl-control \
password: "${{ secrets.FTP_PASSWORD }}" --ssl-reqd \
forceSsl: true --insecure \
localDir: ".pio/build/esp32dev" --user "${{ secrets.FTP_USER }}:${{ secrets.FTP_PASSWORD }}" \
remoteDir: "/" -T "filaman_full_${VERSION}.bin" \
options: "set ssl:verify-certificate no; mirror -R --include-glob filaman_full_*.bin --parallel=1" "ftps://filaman.app:21/filaman_full.bin"

View File

@ -1,5 +1,21 @@
# Changelog # Changelog
## [1.3.76] - 2025-02-23
### Changed
- update webpages for version v1.3.76
### Fixed
- replace FTP action with curl for secure firmware upload and install ncftp
## [1.3.75] - 2025-02-23
### Changed
- update webpages for version v1.3.75
### Fixed
- update FTP user and enhance SSL options in gitea-release workflow
## [1.3.74] - 2025-02-23 ## [1.3.74] - 2025-02-23
### Changed ### Changed
- update webpages for version v1.3.74 - update webpages for version v1.3.74

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