-
Notifications
You must be signed in to change notification settings - Fork 171
205 lines (176 loc) · 6.03 KB
/
build-and-release.yaml
File metadata and controls
205 lines (176 loc) · 6.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
name: Build and Release
on:
push:
tags:
- "v*.*.*"
pull_request:
branches:
- main
jobs:
build_esp32dev:
name: Build Firmware
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Set up Python environment
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Create secrets.h dynamically
run: |
mkdir -p include
cat <<EOL > include/secrets.h
#pragma once
#define WIFI_HOSTNAME "ikea-led"
#ifdef ESP8266
#define WIFI_SSID "WifiForIkeaLamp"
#define WIFI_PASSWORD "WifiPasswordForIkeaLamp"
#endif
#define OTA_USERNAME "admin"
#define OTA_PASSWORD "ikea-led-wall"
EOL
- name: Install dependencies
run: |
pio pkg update
pio upgrade
pio pkg install
- name: Build project for esp32dev
run: platformio run --environment esp32dev
- name: Archive build artifacts
run: |
mkdir -p ./builds
mv ./.pio/build/esp32dev/firmware.bin ./builds/esp32dev_firmware.bin
- name: Upload artifact
uses: actions/upload-artifact@v7
with:
name: esp32dev_firmware
path: ./builds/esp32dev_firmware.bin
build_optional:
name: Build Optional Firmware
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
environment: [nodemcuv2, d1_mini_pro-ota, ESP32-wemos, esp32c3, esp32s3]
include:
- environment: nodemcuv2
artifact_name: nodemcuv2_firmware
- environment: d1_mini_pro-ota
artifact_name: d1_mini_pro_ota_firmware
- environment: ESP32-wemos
artifact_name: ESP32-wemos_firmware
- environment: esp32c3
artifact_name: esp32c3_firmware
- environment: esp32s3
artifact_name: esp32s3_firmware
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Set up Python environment
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Create secrets.h dynamically
run: |
mkdir -p include
cat <<EOL > include/secrets.h
#pragma once
#define WIFI_HOSTNAME "ikea-led"
#ifdef ESP8266
#define WIFI_SSID "WifiForIkeaLamp"
#define WIFI_PASSWORD "WifiPasswordForIkeaLamp"
#endif
#define OTA_USERNAME "admin"
#define OTA_PASSWORD "ikea-led-wall"
EOL
- name: Install dependencies
run: |
pio pkg update
pio upgrade
pio pkg install
- name: Build project for ${{ matrix.environment }}
run: platformio run --environment ${{ matrix.environment }}
- name: Archive build artifacts
if: startsWith(github.ref, 'refs/tags/')
run: |
mkdir -p ./builds
mv ./.pio/build/${{ matrix.environment }}/firmware.bin ./builds/${{ matrix.artifact_name }}.bin
- name: Upload artifact
if: startsWith(github.ref, 'refs/tags/')
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.artifact_name }}
path: ./builds/${{ matrix.artifact_name }}.bin
release:
name: Create GitHub Release
runs-on: ubuntu-latest
needs: [build_esp32dev, build_optional]
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Download ESP32 firmware
uses: actions/download-artifact@v8
with:
name: esp32dev_firmware
path: ./builds/ # specify a target directory
- name: Download ESP8266 firmware (nodemcuv2)
uses: actions/download-artifact@v8
continue-on-error: true
with:
name: nodemcuv2_firmware
path: ./builds/ # specify a target directory
- name: Download ESP8266 firmware (d1_mini_pro-ota)
uses: actions/download-artifact@v8
continue-on-error: true
with:
name: d1_mini_pro_ota_firmware
path: ./builds/ # specify a target directory
- name: Download ESP32-wemos firmware
uses: actions/download-artifact@v8
continue-on-error: true
with:
name: ESP32-wemos_firmware
path: ./builds/ # specify a target directory
- name: Download ESP32-C3 firmware
uses: actions/download-artifact@v8
continue-on-error: true
with:
name: esp32c3_firmware
path: ./builds/ # specify a target directory
- name: Download ESP32-S3 firmware
uses: actions/download-artifact@v8
continue-on-error: true
with:
name: esp32s3_firmware
path: ./builds/ # specify a target directory
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
draft: true
prerelease: true
name: Release ${{ github.ref_name }}
body: |
This is a prerelease version of the firmware.
## Installation
Flash the appropriate firmware binary for your device. https://github.com/ph1p/ikea-led-obegraensad?tab=readme-ov-file#ota-updates
## Default Configuration
- **Hostname:** ikea-led
- **OTA Username:** admin
- **OTA Password:** ikea-led-wall
- **WiFi SSID:** WifiForIkeaLamp (ESP8266 only)
- **WiFi Password:** WifiPasswordForIkeaLamp (ESP8266 only)
**Note:** ESP32 devices will create an access point if unable to connect to WiFi.
files: ./builds/*.bin
fail_on_unmatched_files: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}