add tasmota-AF

This commit is contained in:
Jason2866 2020-12-29 15:55:14 +01:00 committed by GitHub
parent 313c4ea613
commit 805b69e289
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

View File

@ -230,6 +230,30 @@ jobs:
name: firmware name: firmware
path: ./build_output/firmware path: ./build_output/firmware
tasmota-AF:
needs: tasmota_pull
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U platformio
platformio upgrade --dev
platformio update
- name: Run PlatformIO
run: |
platformio run -e tasmota-AF
- uses: actions/upload-artifact@v2
with:
name: firmware
path: ./build_output/firmware
tasmota-BG: tasmota-BG:
needs: tasmota_pull needs: tasmota_pull
runs-on: ubuntu-latest runs-on: ubuntu-latest