Andreas Schiffler
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
2 deletions
-
.github/workflows/compile_esp8266.yml
|
@ -35,11 +35,13 @@ jobs: |
|
|
working-directory: tools/esp8266/html |
|
|
working-directory: tools/esp8266/html |
|
|
run: python convert.py |
|
|
run: python convert.py |
|
|
- name: Run PlatformIO |
|
|
- name: Run PlatformIO |
|
|
run: pio run -d tools/esp8266 |
|
|
run: | |
|
|
|
|
|
pio run -d tools/esp8266 --environment node_mcu_v2 |
|
|
|
|
|
pio run -d tools/esp8266 --environment d1_mini |
|
|
- name: rename |
|
|
- name: rename |
|
|
working-directory: tools/esp8266/helpers |
|
|
working-directory: tools/esp8266/helpers |
|
|
run: python getVersion.py |
|
|
run: python getVersion.py |
|
|
- uses: actions/upload-artifact@v3 |
|
|
- uses: actions/upload-artifact@v3 |
|
|
with: |
|
|
with: |
|
|
name: esp8266 |
|
|
name: esp8266 |
|
|
path: tools/esp8266/.pio/build/d1_mini/out |
|
|
path: tools/esp8266/.pio/build/d1_mini/out/*.bin |
|
|