imagestatus: Remove supervisor related errors from imagestatus proto #48
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: github pages | |
on: | |
push: | |
branches: | |
- trunk | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@master | |
with: | |
submodules: true | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: 'latest' | |
- name: Install Protoc | |
uses: arduino/setup-protoc@master | |
- name: Install Golang (for protoc-gen-doc) | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '^1.17.6' | |
- name: Install protoc-gen-doc | |
run: go install github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc@latest | |
- name: Generate Docs | |
run: make -C docs | |
- name: Deploy | |
uses: peaceiris/[email protected] | |
env: | |
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
PUBLISH_BRANCH: gh-pages | |
PUBLISH_DIR: ./docs/public |