Add GitHub Actions workflow for deployment and documentation build #4
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: Deploy | |
on: | |
# push: | |
# branches: | |
# - main | |
pull_request: | |
release: | |
types: [published] | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "The version of the firmware to build" | |
required: true | |
type: string | |
release-url: | |
description: "Release URL" | |
required: true | |
type: string | |
jobs: | |
build-firmware: | |
name: Build Firmware | |
uses: esphome/workflows/.github/workflows/build.yml@main | |
with: | |
# esphome/onju-voice-microwakeword.yaml | |
files: | | |
esphome/onju-voice.yaml | |
esphome-version: latest | |
combined-name: firmware | |
release-summary: "Check the release notes for more information." | |
release-url: ${{ github.event_name == 'release' && github.event.release.html_url || (github.event_name == 'workflow_dispatch' && inputs.release-url) || '' }} | |
release-version: ${{ (github.event_name == 'release' && github.event.release.tag_name) || (github.event_name == 'workflow_dispatch' && inputs.version) || '' }} | |
build-docs: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Check out code from GitHub | |
uses: actions/[email protected] | |
- name: 🏗️ Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 20.x | |
- name: 🏗️ Install Docusaurus dependencies | |
run: npm install --frozen-lockfile --non-interactive | |
working-directory: docs | |
- name: 🚀 Build Docusaurus | |
run: npm run build | |
working-directory: docs | |
- name: ⬆️ Upload documentation artifact | |
uses: actions/[email protected] | |
with: | |
name: site | |
path: docs/build | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
needs: | |
- build-firmware | |
- build-docs | |
permissions: | |
pages: write | |
id-token: write | |
# environment: | |
# name: github-pages | |
# url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: ⬇️ Download documentation artifact | |
uses: actions/[email protected] | |
with: | |
name: site | |
- name: ⬇️ Download firmware artifacts | |
uses: actions/[email protected] | |
with: | |
name: firmware | |
path: firmware | |
- name: Display firmware artifacts | |
run: ls -lR | |
# - name: 🚀 Deploy to Github Pages | |
# uses: actions/[email protected] | |
# id: deployment |