2024-09-19 12:07:07 -05:00
|
|
|
name: GitHub Pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- uses: jiro4989/setup-nim-action@v2
|
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Build Docs
|
2024-09-25 14:39:15 -05:00
|
|
|
run: |
|
|
|
|
nim develop
|
|
|
|
nim docs
|
2024-09-19 12:07:07 -05:00
|
|
|
|
|
|
|
- name: Upload artifact
|
2024-09-19 12:33:20 -05:00
|
|
|
uses: actions/upload-pages-artifact@v3
|
2024-09-19 12:07:07 -05:00
|
|
|
with:
|
|
|
|
path: ./public
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
needs: build
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
pages: write
|
|
|
|
id-token: write
|
|
|
|
|
|
|
|
environment:
|
|
|
|
name: github-pages
|
|
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Deploy to GitHub Pages
|
|
|
|
id: deployment
|
2024-09-19 12:33:20 -05:00
|
|
|
uses: actions/deploy-pages@v4
|
2024-09-19 12:07:07 -05:00
|
|
|
|