remove gyro.zzz #17
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: Documentation | |
on: | |
push: | |
branches: [master] | |
# Allow manually starting the workflow. | |
workflow_dispatch: | |
# If two concurrent runs are started, | |
# prefer the latest one. | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build docs website | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: goto-bus-stop/setup-zig@v2 | |
with: | |
version: 0.13.0 | |
- name: Build | |
run: zig build docs | |
- name: Upload | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: "zig-out/docs/" | |
publish: | |
name: Publish website | |
runs-on: ubuntu-latest | |
needs: build # wait for build to finish | |
permissions: | |
# Request sufficient permissions to publish the website. | |
pages: write | |
id-token: write | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} |