Skip to content

Commit

Permalink
Merge branch 'py311'
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-eschle committed Jul 28, 2023
2 parents 81e06e4 + aaaaef8 commit 699aced
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/python-publish.yml → .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Build and deploy
on: [push]

jobs:
build_deploy:
dist:
runs-on: ubuntu-latest

steps:
Expand All @@ -27,9 +27,17 @@ jobs:
python -m
pep517.build --source --binary --out-dir dist/ .
- name: Publish package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
publish:
needs: [dist]
environment: pypi
permissions:
id-token: write
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v3
with:
user: __token__
password: ${{ secrets.PYPI_PHASESPACE_TOKEN }}
name: artifact
path: dist

- uses: pypa/gh-action-pypi-publish@release/v1k
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Requirement changes
-------------------



Thanks
------
1.9.0 (20 Jul 2023)
Expand Down

0 comments on commit 699aced

Please sign in to comment.