Remove daily update schedule from Rust docs workflow #36
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: Build PDF Artifact | |
| on: | |
| push: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v27 | |
| - name: Build PDF | |
| run: nix build .#pdf && cp --recursive --dereference --no-preserve=mode,ownership result docs.pdf | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: FeonixDocumentation | |
| path: docs.pdf |