Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
7d578640e2 | |||
b006533a91 | |||
9fa7526623 | |||
dfbb2fbd9b | |||
0302158449 | |||
68c385f9d7 | |||
9a8bd58cb3 | |||
0d8b8918c1 | |||
a892b854b5 | |||
0f02f6c848 | |||
96c054827e | |||
f93eedf775 |
23
.github/workflows/gitea-release.yml
vendored
23
.github/workflows/gitea-release.yml
vendored
@ -203,15 +203,18 @@ jobs:
|
||||
fi
|
||||
done
|
||||
|
||||
- name: Install ncftp
|
||||
run: sudo apt-get install -y ncftp
|
||||
|
||||
- name: Upload Firmware via FTP
|
||||
if: success()
|
||||
uses: sebastianpopp/ftp-action@releases/v2
|
||||
with:
|
||||
host: "filaman.app"
|
||||
port: 21
|
||||
user: "firmware"
|
||||
password: ${{ secrets.FTP_PASSWORD }}
|
||||
forceSsl: true
|
||||
localDir: ".pio/build/esp32dev"
|
||||
remoteDir: "/"
|
||||
options: "set ssl:verify-certificate no; mirror -R --include-glob filaman_full_*.bin --parallel=1"
|
||||
run: |
|
||||
VERSION=$(grep '^version = ' platformio.ini | cut -d'"' -f2)
|
||||
cd .pio/build/esp32dev
|
||||
curl --ftp-ssl-reqd \
|
||||
--ftp-ssl-control \
|
||||
--ssl-reqd \
|
||||
--insecure \
|
||||
--user "${{ secrets.FTP_USER }}:${{ secrets.FTP_PASSWORD }}" \
|
||||
-T "filaman_full_${VERSION}.bin" \
|
||||
"ftps://filaman.app:21/filaman_full.bin"
|
30
CHANGELOG.md
30
CHANGELOG.md
@ -1,5 +1,35 @@
|
||||
# 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
|
||||
### Changed
|
||||
- update webpages for version v1.3.74
|
||||
|
||||
### Fixed
|
||||
- update password syntax in gitea-release workflow
|
||||
|
||||
|
||||
## [1.3.73] - 2025-02-23
|
||||
### Changed
|
||||
- update webpages for version v1.3.73
|
||||
- update version to 1.3.72 in platformio.ini
|
||||
|
||||
|
||||
## [1.3.72] - 2025-02-23
|
||||
### Changed
|
||||
- update webpages for version v1.3.72
|
||||
|
@ -9,8 +9,8 @@
|
||||
; https://docs.platformio.org/page/projectconf.html
|
||||
|
||||
[common]
|
||||
version = "1.3.72"
|
||||
|
||||
version = "1.3.76"
|
||||
##
|
||||
[env:esp32dev]
|
||||
platform = espressif32
|
||||
board = esp32dev
|
||||
|
Reference in New Issue
Block a user