User extension API revision, adding to GOC3 model #103
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: Documentation | |
| on: | |
| push: | |
| branches: | |
| - main # update to match your development branch (master, main, dev, trunk, ...) | |
| tags: '*' | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: | |
| labels: cuda | |
| strategy: | |
| matrix: | |
| julia-version: ['1.11'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: julia-actions/install-juliaup@v2 | |
| with: | |
| channel: ${{ matrix.julia-version }} | |
| - name: Cache Julia artifacts | |
| uses: actions/cache@v3 | |
| - name: Instantiate the dependencies | |
| shell: julia --project=docs/ --color=yes {0} | |
| run: | | |
| using Pkg; | |
| Pkg.Registry.update(); | |
| Pkg.instantiate(); | |
| - name: Build and deploy documentation | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token | |
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key | |
| run: julia --project=docs/ --color=yes docs/make.jl |