mirror of
https://github.com/daylinmorgan/bbansi.git
synced 2024-11-22 09:20:45 -06:00
46 lines
834 B
YAML
46 lines
834 B
YAML
|
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
|