ci: add docs workflow for api

This commit is contained in:
Daylin Morgan 2023-09-18 13:04:05 -05:00
parent ddd3242cbd
commit 4029129c75
Signed by: daylin
GPG Key ID: C1E52E7DD81DF79F
1 changed files with 45 additions and 0 deletions

45
.github/workflows/docs.yml vendored Normal file
View File

@ -0,0 +1,45 @@
name: 📄 Build Docs
on:
push:
tags: ["v*.*.*"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: jiro4989/setup-nim-action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docs
run: nim docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./public
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2