Skip to content

Merge pull request #222 from FutureProofHomes/fusb302b_move_irq_2_core_1 #342

Merge pull request #222 from FutureProofHomes/fusb302b_move_irq_2_core_1

Merge pull request #222 from FutureProofHomes/fusb302b_move_irq_2_core_1 #342

Workflow file for this run

name: Build-Satellite-Firmware
on:
push:
branches:
- develop
workflow_dispatch:
env:
DEFAULT_PYTHON: "3.9"
jobs:
build-firmware:
uses: esphome/workflows/.github/workflows/build.yml@main
with:
files: |
config/satellite1.factory.yaml
esphome-version: 2024.12.2
release-summary: develop-branch
release-url:
release-version:
create_artifact_matrix:
name: Create artifact matrix
needs:
- build-firmware
outputs:
matrix: ${{ steps.artifacts.outputs.matrix }}
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/[email protected]
with:
path: files
- run: tree
- name: Get artifact names
id: artifacts
run: |
artifacts=$(ls --format=single-column files)
echo "artifacts<<EOF" >> $GITHUB_OUTPUT
echo "$artifacts" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
echo "matrix=$(ls files | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT