mirror of https://github.com/arendst/Tasmota.git
162 lines
7.0 KiB
YAML
162 lines
7.0 KiB
YAML
name: Build_firmware_master
|
|
|
|
on:
|
|
push:
|
|
branches: master
|
|
paths-ignore:
|
|
- '.github/**' # Ignore changes towards the .github directory
|
|
- '**.md' # Do no build if *.md files changes
|
|
|
|
# Ensures that only one deploy task per branch/environment will run at a time.
|
|
concurrency:
|
|
group: environment-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
base-images:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'arendst/Tasmota'
|
|
continue-on-error: true
|
|
strategy:
|
|
matrix:
|
|
variant:
|
|
- tasmota
|
|
- tasmota4M
|
|
- tasmota-minimal
|
|
- tasmota-display
|
|
- tasmota-ir
|
|
- tasmota-knx
|
|
- tasmota-lite
|
|
- tasmota-sensors
|
|
- tasmota-zbbridge
|
|
- tasmota-zigbee
|
|
- tasmota32
|
|
- tasmota32-webcam
|
|
- tasmota32-bluetooth
|
|
- tasmota32-display
|
|
- tasmota32-ir
|
|
- tasmota32-lvgl
|
|
- tasmota32c3
|
|
- tasmota32solo1
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
ref: master
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v1
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install -U platformio
|
|
- name: Run PlatformIO
|
|
run: platformio run -e ${{ matrix.variant }}
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: firmware
|
|
path: ./build_output
|
|
|
|
language-images:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'arendst/Tasmota'
|
|
continue-on-error: true
|
|
strategy:
|
|
matrix:
|
|
variant: [ tasmota, tasmota32 ]
|
|
language: [ AF, BG, BR, CN, CZ, DE, ES, FR, FY, GR, HE, HU, IT, KO, NL, PL, PT, RO, RU, SE, SK, TR, TW, UK, VN ]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
ref: master
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v1
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install -U platformio
|
|
- name: Run PlatformIO
|
|
run: platformio run -e ${{ matrix.variant }}-${{ matrix.language }}
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: firmware
|
|
path: ./build_output
|
|
|
|
Upload:
|
|
needs: [base-images, language-images]
|
|
runs-on: ubuntu-latest
|
|
continue-on-error: true
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/download-artifact@v2
|
|
with:
|
|
name: firmware
|
|
path: ./mv_firmware
|
|
- name: Display structure of downloaded files
|
|
run: ls -R ./mv_firmware/
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v1
|
|
#if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
tag_name: ${{ github.run_number }}
|
|
files: ./mv_firmware/firmware/*
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Move firmware files in sub-folders
|
|
run: |
|
|
mkdir -p ./release-firmware/tasmota/languages
|
|
mkdir -p ./release-firmware/tasmota32/languages
|
|
mkdir -p ./release-firmware/map
|
|
[ ! -f ./mv_firmware/map/* ] || mv ./mv_firmware/map/* ./release-firmware/map/
|
|
[ ! -f ./mv_firmware/firmware/tasmota.* ] || mv ./mv_firmware/firmware/tasmota.* ./release-firmware/tasmota/
|
|
[ ! -f ./mv_firmware/firmware/tasmota4M.* ] || mv ./mv_firmware/firmware/tasmota4M.* ./release-firmware/tasmota/
|
|
[ ! -f ./mv_firmware/firmware/tasmota-sensors.* ] || mv ./mv_firmware/firmware/tasmota-sensors.* ./release-firmware/tasmota/
|
|
[ ! -f ./mv_firmware/firmware/tasmota-minimal.bin.gz ] || mv ./mv_firmware/firmware/tasmota-minimal.bin.gz ./release-firmware/tasmota/
|
|
[ ! -f ./mv_firmware/firmware/tasmota-lite.* ] || mv ./mv_firmware/firmware/tasmota-lite.* ./release-firmware/tasmota/
|
|
[ ! -f ./mv_firmware/firmware/tasmota-ir*.* ] || mv ./mv_firmware/firmware/tasmota-ir*.* ./release-firmware/tasmota/
|
|
[ ! -f ./mv_firmware/firmware/tasmota-display.* ] || mv ./mv_firmware/firmware/tasmota-display.* ./release-firmware/tasmota/
|
|
[ ! -f ./mv_firmware/firmware/tasmota-knx.* ] || mv ./mv_firmware/firmware/tasmota-knx.* ./release-firmware/tasmota/
|
|
[ ! -f ./mv_firmware/firmware/tasmota-zbbridge.* ] || mv ./mv_firmware/firmware/tasmota-zbbridge.* ./release-firmware/tasmota/
|
|
[ ! -f ./mv_firmware/firmware/tasmota-zigbee.* ] || mv ./mv_firmware/firmware/tasmota-zigbee.* ./release-firmware/tasmota/
|
|
[ ! -f ./mv_firmware/firmware/tasmota32.* ] || mv ./mv_firmware/firmware/tasmota32.* ./release-firmware/tasmota32/
|
|
[ ! -f ./mv_firmware/firmware/tasmota32solo1*.* ] || mv ./mv_firmware/firmware/tasmota32solo1*.* ./release-firmware/tasmota32/
|
|
[ ! -f ./mv_firmware/firmware/tasmota32-ir*.* ] || mv ./mv_firmware/firmware/tasmota32-ir*.* ./release-firmware/tasmota32/
|
|
[ ! -f ./mv_firmware/firmware/tasmota32-display.* ] || mv ./mv_firmware/firmware/tasmota32-display.* ./release-firmware/tasmota32/
|
|
[ ! -f ./mv_firmware/firmware/tasmota32-lvgl.* ] || mv ./mv_firmware/firmware/tasmota32-lvgl.* ./release-firmware/tasmota32/
|
|
[ ! -f ./mv_firmware/firmware/tasmota32-web*.* ] || mv ./mv_firmware/firmware/tasmota32-web*.* ./release-firmware/tasmota32/
|
|
[ ! -f ./mv_firmware/firmware/tasmota32-odroidgo.* ] || mv ./mv_firmware/firmware/tasmota32-odroidgo.* ./release-firmware/tasmota32/
|
|
[ ! -f ./mv_firmware/firmware/tasmota32-core2.* ] || mv ./mv_firmware/firmware/tasmota32-core2.* ./release-firmware/tasmota32/
|
|
[ ! -f ./mv_firmware/firmware/tasmota32-bluetooth.* ] || mv ./mv_firmware/firmware/tasmota32-bluetooth.* ./release-firmware/tasmota32/
|
|
[ ! -f ./mv_firmware/firmware/tasmota32c3*.* ] || mv ./mv_firmware/firmware/tasmota32c3*.* ./release-firmware/tasmota32/
|
|
[ ! -f ./mv_firmware/firmware/tasmota32* ] || mv ./mv_firmware/firmware/tasmota32* ./release-firmware/tasmota32/languages/
|
|
[ ! -f ./mv_firmware/firmware/* ] || mv ./mv_firmware/firmware/* ./release-firmware/tasmota/languages/
|
|
- name: Display files to transfer
|
|
run: ls -R ./*
|
|
- name: Push Firmware files to tmp_copy repo
|
|
uses: Jason2866/copy_file_to_another_repo_action@main
|
|
env:
|
|
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
|
|
with:
|
|
source_file: 'release-firmware'
|
|
destination_repo: 'arendst/tmp_copy'
|
|
destination_branch: 'firmware'
|
|
user_email: 'github-actions@github.com'
|
|
user_name: 'github-actions'
|
|
|
|
Start_final_copy:
|
|
needs: Upload
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Creat trigger.txt
|
|
run: |
|
|
echo ${GITHUB_SHA} &> trigger.txt
|
|
echo "$(<trigger.txt)"
|
|
- name: Push trigger.txt to start workflow copy in tmp repo
|
|
uses: Jason2866/copy_file_to_another_repo_action@main
|
|
env:
|
|
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
|
|
with:
|
|
source_file: 'trigger.txt'
|
|
destination_repo: 'arendst/tmp_copy'
|
|
destination_branch: 'action-master'
|
|
user_email: 'github-actions@github.com'
|
|
user_name: 'github-actions'
|