[metalos][buck2][typing] Inline types.record #2491
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 and Deploy Documentation | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy-docs: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Add tools/ to PATH | |
run: echo "$(pwd)/tools" >> $GITHUB_PATH | |
- name: Install docs tools | |
run: yarn | |
working-directory: antlir/website | |
- name: Build docs | |
run: yarn build | |
working-directory: antlir/website | |
- name: Deploy to gh-pages | |
uses: JamesIves/github-pages-deploy-action@3.6.2 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: antlir/website/build | |
CLEAN: true |