Skip to content

Spotify usermod

Spotify usermod #552

Workflow file for this run

name: PlatformIO CI
on: [push, pull_request]
jobs:
build:
name: Builds
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
environment: [LavaLamp, 241Rings, esp32_4MB_V4_S]
steps:
- uses: actions/checkout@v4
- name: Cache pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v4
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ matrix.environment}}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install PlatformIO
run: pip install -r requirements.txt
- name: Setup Vars
id: vars
run: |
git_hash=$(git rev-parse --short "$GITHUB_SHA")
git_branch=${GITHUB_REF#refs/heads/}
echo "git_hash=${git_hash}" >> $GITHUB_ENV
echo "git_branch=${git_branch}" >> $GITHUB_ENV
- name: Build firmware
env:
WLED_RELEASE: True
run: pio run -e ${{ matrix.environment }}
- name: Rename Bin
run: mv -v .pio/build/${{ matrix.environment }}/firmware.bin firmware-${{ matrix.environment }}.bin
- uses: actions/upload-artifact@v4
with:
name: firmware-${{ matrix.environment }}
path: firmware-${{ matrix.environment }}.bin
- uses: actions/upload-artifact@v4
if: startsWith(github.ref, 'refs/tags/')
with:
name: firmware-release-${{ matrix.environment }}
path: build_output/release/*.bin
release:
name: Create Release
runs-on: ubuntu-latest
needs: [build]
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v4
- name: List Artifacts
run: find ./ -type f -name *.bin -exec mv -v {} ./ \;
- name: Create draft release
uses: softprops/action-gh-release@v1
with:
draft: True
files: |
WLEDMM*.bin
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}