Skip to content

Commit

Permalink
Merge commit '8767230ffa634a3b8471bfc05e9f7ac2a940efb6' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
staircase-dev committed Jul 18, 2023
2 parents f3fbaeb + 8767230 commit a9d1cf5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Upload to PYPI

on:
workflow_dispatch:
release:
types: [created]

Expand All @@ -20,6 +21,6 @@ jobs:
- name: Build package
run: poetry build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.PYPI_API_TOKEN }}
20 changes: 20 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.10"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py

python:
install:
- requirements: docs/requirements.txt

0 comments on commit a9d1cf5

Please sign in to comment.