Skip to content

Milestone v0.4.3 - minor update, bit size variables and enhancements … #16

Milestone v0.4.3 - minor update, bit size variables and enhancements …

Milestone v0.4.3 - minor update, bit size variables and enhancements … #16

Workflow file for this run

name: Deploy documentation and package
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r quality.txt
pip install -e .
- name: Build documentation
run: |
sphinx-build -M html doc build --keep-going
- name: Deploy documentation
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/html
- name: Release to pypi with poetry
run: |
poetry config pypi-token.pypi ${{ secrets.PYX2CSCOPE_PYPI }}
poetry publish -vvv --build