Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ jobs:
deploy:
needs: release
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/urbanpy
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down Expand Up @@ -107,9 +113,7 @@ jobs:
run: |
python setup.py sdist bdist_wheel
- name: Publish distribution to PyPi
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}
uses: pypa/gh-action-pypi-publish@release/v1
- uses: ammaraskar/sphinx-action@master
with:
docs-folder: "docs/"
Expand Down
Loading