Skip to content

Fixing 'utils.unpack(...)' when used against an ArraySpec #79

Fixing 'utils.unpack(...)' when used against an ArraySpec

Fixing 'utils.unpack(...)' when used against an ArraySpec #79

Workflow file for this run

name: Packtype Documentation
on:
pull_request:
push:
branches:
- main
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages : write
id-token: write
# Allow only one concurrent deployment to GitHub pages, but don't cancel running
# builds and wait for completion
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build_docs:
name : Build Documentation
runs-on : ubuntu-latest
timeout-minutes: 15
steps :
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name : Install Poetry and environment
shell: bash
run : |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --with dev --with docs
- name: Build documentation
run: |
poetry run mkdocs build
- name: Upload documentation artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./site
deploy_docs:
if : github.event_name != 'pull_request'
name : Deploy Documentation
runs-on : ubuntu-latest
timeout-minutes: 15
needs :
- build_docs
steps :
- name: Deploy to GitHub pages
id: deployment
uses: actions/deploy-pages@v4