Build #42
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 | |
env: | |
DEVICE_NAME: air-1 | |
RELEASE_URL: ${{ github.server_url }}/${{ github.repository }}/releases/latest | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
pull_request: | |
schedule: | |
- cron: "0 5 * * 1" | |
jobs: | |
build: | |
name: Build And Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Firmware | |
uses: esphome/[email protected] | |
id: esphome-build | |
with: | |
yaml_file: Integrations/ESPHome/${{ env.DEVICE_NAME }}.yaml | |
version: 'latest' | |
cache: true | |
- name: Read version from YAML file | |
id: read_version | |
run: | | |
version=$(awk '/substitutions:/ {found=1} found && /version:/ {print $2; exit}' Integrations/ESPHome/${{ env.DEVICE_NAME }}.yaml | tr -d '"') | |
echo "project_version=$version" >> $GITHUB_ENV | |
- name: Move generated files to output | |
run: | | |
mkdir -p output | |
mv ${{ steps.esphome-build.outputs.name }}/* output/ | |
echo ${{ steps.esphome-build.outputs.version }} > output/version | |
# Extract MD5 checksum of firmware.ota.bin | |
MD5_CHECKSUM=$(jq -r '.ota.md5' output/manifest.json) | |
echo "MD5_CHECKSUM=$MD5_CHECKSUM" >> $GITHUB_ENV | |
# Create new manifest.json with jq | |
jq -n --arg name "${{ env.DEVICE_NAME }}" \ | |
--arg version "${{ env.project_version }}" \ | |
--arg md5 "$MD5_CHECKSUM" \ | |
'{name: $name, version: $version, home_assistant_domain: "esphome", new_install_prompt_erase: false, builds: [{chipFamily: "ESP32-C3", parts: [{path: "apollo-${{ env.DEVICE_NAME }}-esp32c3.factory.bin", offset: 0}], ota: {path: "apollo-${{ env.DEVICE_NAME }}-esp32c3.ota.bin", md5: $md5}}]}' > output/manifest.json | |
- name: Ensure no symlinks or hard links | |
run: | | |
find output/ -type l -exec rm -f {} \; | |
- uses: actions/upload-pages-artifact@v1 | |
with: | |
name: github-pages | |
path: output/ | |
retention-days: 1 | |
- name: Create Release | |
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main' | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | |
with: | |
tag_name: ${{ env.project_version }} | |
release_name: "Release ${{ env.project_version }}" | |
body: Release of version ${{ env.project_version }} | |
draft: false | |
prerelease: false | |
- name: Upload firmware.factory.bin to Release | |
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main' | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: output/apollo-${{ env.DEVICE_NAME }}-esp32c3.factory.bin | |
asset_name: apollo-${{ env.DEVICE_NAME }}-esp32c3.factory.bin | |
asset_content_type: application/octet-stream | |
- name: Upload firmware.ota.bin to Release | |
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main' | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: output/apollo-${{ env.DEVICE_NAME }}-esp32c3.ota.bin | |
asset_name: apollo-${{ env.DEVICE_NAME }}-esp32c3.ota.bin | |
asset_content_type: application/octet-stream | |
- name: Upload firmware.ota.bin to Release | |
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main' | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: output/manifest.json | |
asset_name: manifest.json | |
asset_content_type: application/octet-stream | |
deploy: | |
if: contains(fromJSON('["workflow_dispatch", "push", "schedule"]'), github.event_name) && github.ref == 'refs/heads/main' | |
name: Deploy to GitHub Pages | |
runs-on: ubuntu-latest | |
needs: build | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/[email protected] |