24.10.17 #566
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
workflow_dispatch: | |
release: | |
types: [published] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-firmware: | |
name: Build Firmware | |
uses: esphome/workflows/.github/workflows/[email protected] | |
with: | |
files: | | |
home-assistant-voice.factory.yaml | |
home-assistant-voice.8mb.yaml | |
esphome-version: dev | |
release-summary: ${{ github.event_name == 'release' && github.event.release.body || '' }} | |
release-url: ${{ github.event_name == 'release' && github.event.release.html_url || '' }} | |
release-version: ${{ github.event_name == 'release' && github.event.release.tag_name || '' }} | |
comment: | |
if: github.event_name == 'pull_request' | |
name: Comment on PR | |
runs-on: ubuntu-latest | |
needs: | |
- build-firmware | |
steps: | |
- name: Comment on PR | |
uses: actions/[email protected] | |
with: | |
script: |- | |
const artifacts = await github.rest.actions.listWorkflowRunArtifacts({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
run_id: context.runId, | |
}) | |
const url = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}/artifacts/${artifacts['data']['artifacts'][0]['id']}` | |
await github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: `Firmware built successfully! :tada: | |
[Download][download] and extract the firmware to install with https://web.esphome.io | |
Make sure to choose \`home-assistant-voice-esp32s3.factory.bin\`. | |
[download]: ${url}` | |
}) | |
upload: | |
if: github.event_name == 'release' | |
name: Upload to R2 | |
needs: | |
- build-firmware | |
uses: esphome/workflows/.github/workflows/[email protected] | |
with: | |
directory: home-assistant-voice-pe | |
version: ${{ needs.build-firmware.outputs.version }} | |
channel: ${{ github.event.release.prerelease && 'beta' || 'production' }} | |
secrets: inherit |