chore(deps): update taiki-e/install-action digest to 7ec692f (#498) #511
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
| on: | |
| push: | |
| branches: | |
| - main | |
| name: Docs | |
| jobs: | |
| docs: | |
| name: Build and deploy documentation | |
| concurrency: ci-${{ github.ref }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2 | |
| - name: Build rustdocs | |
| run: ./scripts/build-docs.sh | |
| - name: Organize | |
| run: | | |
| rm -rf target/gh-pages | |
| mkdir target/gh-pages | |
| mv target/doc/_redirects target/gh-pages | |
| mv target/doc target/gh-pages/rustdoc | |
| - name: Publish | |
| uses: cloudflare/pages-action@1 | |
| with: | |
| apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
| accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
| projectName: quick-junit | |
| directory: target/gh-pages | |
| gitHubToken: ${{ secrets.GITHUB_TOKEN }} |