ci: add docs workflow

This commit is contained in:
Daylin Morgan 2023-04-27 09:07:59 -05:00
parent f825d0e5cc
commit 49e6596c9f
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F

30
.github/workflows/docs.yml vendored Normal file
View file

@ -0,0 +1,30 @@
name: GitHub Pages
on:
push:
tags: ["v*.*.*"]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- uses: jiro4989/setup-nim-action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docs
run: nimble docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public