Compare commits
No commits in common. "7d578640e2c31cecd5e6d47bf856939aba80b14f" and "dfbb2fbd9bbd2a9f2bd097a59df18b0e5d6e973b" have entirely different histories.
7d578640e2
...
dfbb2fbd9b
23
.github/workflows/gitea-release.yml
vendored
23
.github/workflows/gitea-release.yml
vendored
@ -203,18 +203,15 @@ jobs:
|
||||
fi
|
||||
done
|
||||
|
||||
- name: Install ncftp
|
||||
run: sudo apt-get install -y ncftp
|
||||
|
||||
- name: Upload Firmware via FTP
|
||||
if: success()
|
||||
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"
|
||||
uses: sebastianpopp/ftp-action@releases/v2
|
||||
with:
|
||||
host: "filaman.app"
|
||||
port: 21
|
||||
user: ${{ secrets.FTP_USER }}
|
||||
password: ${{ secrets.FTP_PASSWORD }}
|
||||
forceSsl: true
|
||||
localDir: ".pio/build/esp32dev"
|
||||
remoteDir: "/"
|
||||
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"
|
@ -1,13 +1,5 @@
|
||||
# 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
|
||||
|
@ -9,7 +9,7 @@
|
||||
; https://docs.platformio.org/page/projectconf.html
|
||||
|
||||
[common]
|
||||
version = "1.3.76"
|
||||
version = "1.3.75"
|
||||
##
|
||||
[env:esp32dev]
|
||||
platform = espressif32
|
||||
|
Loading…
x
Reference in New Issue
Block a user