Update JamesIves/github-pages-deploy-action action to v4.6.7 #608
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
on: [push] | |
jobs: | |
checkout_compile_lint: | |
runs-on: ubuntu-latest | |
container: uber/prototool:1.10.0 | |
name: Compile and lint protobuf files | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Compile | |
run: prototool compile | |
- name: Lint | |
run: prototool lint | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Remove previous docs | |
run: rm -rf docs | |
- name: Build docs | |
run: ./build-docs.sh |