moustache_variable_t no longer const #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Platform IO CI | |
on: [push] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
architecture: 'x64' | |
- name: Generate image files | |
run: | | |
chmod +x ./generate_images.sh | |
./generate_images.sh | |
- name: Install PlatformIO | |
run: python -m pip install platformio | |
- name: Build firmware | |
run: platformio run | |
- name: Archive | |
uses: actions/upload-artifact@v3 | |
with: | |
name: firmware.bin | |
path: .pio/build/*/firmware.bin |