Skip to content

Commit

Permalink
Started GitHub Workflow Config f/ API Docs
Browse files Browse the repository at this point in the history
- Created the `main.yaml` to automatically build the API Docs via a GitHub Workflow.
  • Loading branch information
00JCIV00 committed Apr 27, 2024
1 parent 8f9546f commit 1b3814c
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: docs

on:
push:
branches:
- "main"
- "v0*"
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: true

jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v2
- uses: goto-bus-stop/setup-zig@v2
with:
version: master
- run: zig build docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "docs"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1

0 comments on commit 1b3814c

Please sign in to comment.