Compare commits
No commits in common. "84dd2bd40b5ee127d97500d4dfb8c5cb0d8602d2" and "f1c2b2eb874f37c16eed3487411ba31844916f58" have entirely different histories.
84dd2bd40b
...
f1c2b2eb87
27
.github/workflows/providers/gitea-release.yml
vendored
27
.github/workflows/providers/gitea-release.yml
vendored
@ -13,27 +13,36 @@ jobs:
|
|||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install System Dependencies
|
- name: Install Build Dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
# Add PlatformIO repository
|
||||||
sudo apt-get install -y python3 python3-pip build-essential curl git
|
curl -fsSL https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/system/99-platformio-udev.rules | sudo tee /etc/udev/rules.d/99-platformio-udev.rules
|
||||||
|
|
||||||
- name: Install Python Dependencies
|
sudo curl -fsSL -o /etc/apt/trusted.gpg.d/platformio.gpg https://github.com/platformio/platformio-core/releases/download/v6.1.11/platformio-keyring.gpg
|
||||||
run: |
|
echo "deb https://github.com/platformio/platformio-core/releases/download/v6.1.11/ any/" | sudo tee /etc/apt/sources.list.d/platformio.list
|
||||||
sudo pip3 install -U platformio esptool
|
|
||||||
|
# Install dependencies
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y platformio-core python3-pip build-essential
|
||||||
|
|
||||||
|
# Install esptool
|
||||||
|
sudo pip3 install esptool==4.5.1
|
||||||
|
|
||||||
echo "Verifying installations:"
|
echo "Verifying installations:"
|
||||||
platformio --version
|
pio --version
|
||||||
python3 --version
|
python3 --version
|
||||||
esptool.py version
|
esptool.py version
|
||||||
|
|
||||||
- name: Build Firmware
|
- name: Build Firmware
|
||||||
run: |
|
run: |
|
||||||
|
# Initialize project
|
||||||
|
pio project init --board esp32dev
|
||||||
|
|
||||||
echo "Building SPIFFS..."
|
echo "Building SPIFFS..."
|
||||||
platformio run -t buildfs
|
pio run -t buildfs -v
|
||||||
|
|
||||||
echo "Building firmware..."
|
echo "Building firmware..."
|
||||||
platformio run
|
pio run -v
|
||||||
|
|
||||||
- name: Create Release Files
|
- name: Create Release Files
|
||||||
run: |
|
run: |
|
||||||
|
@ -1,10 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [1.2.38] - 2025-02-19
|
|
||||||
### Added
|
|
||||||
- update Gitea release workflow and increment version to 1.2.38
|
|
||||||
|
|
||||||
|
|
||||||
## [1.2.37] - 2025-02-19
|
## [1.2.37] - 2025-02-19
|
||||||
### Added
|
### Added
|
||||||
- update Gitea release workflow and increment version to 1.2.37
|
- update Gitea release workflow and increment version to 1.2.37
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.2.38"
|
version = "1.2.37"
|
||||||
|
|
||||||
[env:esp32dev]
|
[env:esp32dev]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
|
Loading…
x
Reference in New Issue
Block a user