Compare commits
3 Commits
dfbb2fbd9b
...
7d578640e2
Author | SHA1 | Date | |
---|---|---|---|
7d578640e2 | |||
b006533a91 | |||
9fa7526623 |
23
.github/workflows/gitea-release.yml
vendored
23
.github/workflows/gitea-release.yml
vendored
@ -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: ${{ secrets.FTP_USER }}
|
--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 ftp:ssl-force true; set ftp:ssl-protect-data true; set ssl:verify-certificate no; set ftp:ssl-auth TLS; put filaman_full_*.bin -o filaman_full.bin"
|
"ftps://filaman.app:21/filaman_full.bin"
|
@ -1,5 +1,13 @@
|
|||||||
# 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
|
## [1.3.75] - 2025-02-23
|
||||||
### Changed
|
### Changed
|
||||||
- update webpages for version v1.3.75
|
- update webpages for version v1.3.75
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.3.75"
|
version = "1.3.76"
|
||||||
##
|
##
|
||||||
[env:esp32dev]
|
[env:esp32dev]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
|
Loading…
x
Reference in New Issue
Block a user