Skip to content

Fixed release for crash issue #5

Fixed release for crash issue

Fixed release for crash issue #5

Workflow file for this run

name: Build and Upload Release
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install PlatformIO
run: pip install platformio
- name: Build PlatformIO project
run: pio run --target buildrelease
- name: Upload file to release
uses: softprops/action-gh-release@v2
with:
files: firmware.bin
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}