Docs (Experimental) #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs (Experimental) | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Bulid Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set Up Git Credentials | |
uses: de-vri-es/setup-git-credentials@v2 | |
with: | |
credentials: https://username:${{ secrets.GH_PAT }}@github.com | |
- name: Checkout ${{ github.repository }} | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GH_PAT }} | |
- name: Set Up uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: 0.5.x | |
enable-cache: true | |
- name: Install Dependencies | |
run: uv sync --only-group docs && uv run icl install | |
env: | |
FONTAWESOME_PKG_TOKEN: ${{ secrets.FONTAWESOME_PKG_TOKEN }} | |
- name: Deploy to Vercel | |
uses: celsiusnarhwal/mkdocs-vercel-deploy@main | |
with: | |
vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} | |
vercel-project-id: ${{ secrets.VERCEL_PROJECT-ID }} |