Add set_local
support for static quant with pt2e (#1870)
#1474
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: Publish | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Online Document | |
run: | | |
git config --local --get remote.origin.url | |
cd docs/build_docs | |
bash build.sh latest | |
- name: Push to github | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build_tmp/gh-pages | |
publish_branch: gh-pages |