Skip to content

Merge pull request #14 from athom-tech/main #105

Merge pull request #14 from athom-tech/main

Merge pull request #14 from athom-tech/main #105

Workflow file for this run

name: Build binaries
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
name: Build ${{ matrix.device }} - ${{ matrix.esphome }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
device:
- rgb-light
- rgbww-light
- rgbct-light
- rgbw-light
- garage-door
- ws2812b
- mini-switch
- relay-board-x1
- relay-board-x2
- relay-board-x4
- relay-board-x8
- smart-plug
- smart-plug-v2
- wall-outlet
- sw01
- sw01-v2
- sw02
- sw02-v2
- sw03
- sw04
- cb02
- ls-4p-3wire
- ls-4p-4wire
- presence-sensor
esphome:
- latest
- beta
- dev
container: ghcr.io/esphome/esphome:${{ matrix.esphome }}
steps:
- name: Checkout source
uses: actions/checkout@v3.2.0
- uses: ./.github/actions/build
with:
device: ${{ matrix.device }}