Set ARFLAGS in the cargo_build_script rule (#3704) #1405
This file contains hidden or 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: Docs-CI/CD | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| docs: | |
| name: Docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Run tests | |
| run: bazel run --compilation_mode=opt --stamp //:publish_book | |
| working-directory: docs | |
| - name: Deploy to GitHub Pages | |
| uses: JamesIves/[email protected] | |
| with: | |
| branch: gh-pages # The branch the action should deploy to. | |
| folder: docs/book # The folder the action should deploy. |