Skip to content

v1.2.30

v1.2.30 #83

Workflow file for this run

name: PlatformIO CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Build PlatformIO Project
run: |
pio run
export RELEASE_VERSION=${GITHUB_REF#refs/*/}
export VERSION_NUMBER=$RELEASE_VERSION
echo VERSION_NUMBER=$VERSION_NUMBER
bash ./.github/post-build.sh
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
./artifacts/*.zip