-
Notifications
You must be signed in to change notification settings - Fork 88
186 lines (161 loc) · 5.29 KB
/
build-and-release.yaml
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
name: Build and Release
on:
push:
tags:
- 'v*.*.*'
branches:
- main
pull_request:
branches:
- main
jobs:
build_esp32dev:
name: Build Firmware
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python environment
uses: actions/setup-python@v2
with:
python-version: '3.8'
- 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 "ikealedmatrix"
#ifdef ESP8266
#define WIFI_SSID "WifiForIkeaLamp"
#define WIFI_PASSWORD "WifiPasswordForIkeaLamp"
#endif
#define OTA_USERNAME "admin"
#define OTA_PASSWORD "password"
EOL
- name: Install dependencies
run: |
platformio update
platformio upgrade
platformio lib 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@v4
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]
include:
- environment: nodemcuv2
artifact_name: nodemcuv2_firmware
- environment: d1_mini_pro-ota
artifact_name: d1_mini_pro_ota_firmware
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python environment
uses: actions/setup-python@v2
with:
python-version: '3.8'
- 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 "ikealedmatrix"
#ifdef ESP8266
#define WIFI_SSID "WifiForIkeaLamp"
#define WIFI_PASSWORD "WifiPasswordForIkeaLamp"
#endif
#define OTA_USERNAME "admin"
#define OTA_PASSWORD "password"
EOL
- name: Install dependencies
run: |
platformio update
platformio upgrade
platformio lib 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@v4
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@v2
- name: Download ESP32 firmware
uses: actions/download-artifact@v4
with:
name: esp32dev_firmware
path: ./builds/ # specify a target directory
- name: Download ESP8266 firmware (nodemcuv2)
uses: actions/download-artifact@v4
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@v4
continue-on-error: true
with:
name: d1_mini_pro_ota_firmware
path: ./builds/ # specify a target directory
- name: Get version from tag
id: get_version
run: |
VERSION=${GITHUB_REF##*/}
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.VERSION }}
name: Pre-release ${{ env.VERSION }}
draft: true
prerelease: true
body: |
This is a prerelease version of the firmware.
Credentials for OTA updates:
- Username: admin
- Password: password
Credentials for WiFi connection:
- SSID: WifiForIkeaLamp
- Password: WifiPasswordForIkeaLamp
Note: If the device cannot connect to the WiFi network (ESP32 only), it will create an access point.
Default hostname: ikealedmatrix
files: |
./builds/esp32dev_firmware.bin
./builds/nodemcuv2_firmware.bin
./builds/d1_mini_pro_ota_firmware.bin
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}