Skip to content

refactor: Packet system #59

refactor: Packet system

refactor: Packet system #59

Workflow file for this run

name: Deploy docs
on:
push:
branches: ["early-dev"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- uses: pdm-project/setup-pdm@v3
with:
python-version: 3.11
cache: true
- name: Install dependencies
run: pdm install -G docs || echo $(pwd)/src > .venv/lib/python3.11/site-packages/pyfsd.pth || true
- name: Build
run: |
source .venv/bin/activate
mkdocs build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: site
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2