-
-
Notifications
You must be signed in to change notification settings - Fork 21
95 lines (90 loc) · 2.74 KB
/
deploy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
---
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
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
consolidate:
name: Consolidate firmwares
runs-on: ubuntu-latest
needs:
- build-firmware
- build-docs
steps:
- name: ⬇️ Download documentation artifact
uses: actions/[email protected]
with:
path: firmwares
- name: Display firmware artifacts
run: ls -lR
# deploy:
# name: Deploy
# runs-on: ubuntu-latest
# needs: consolidate
# 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