Skip to content

Commit

Permalink
add github workflow to upload build to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
perython committed Apr 3, 2024
1 parent 2e30246 commit 38f20ce
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
jobs:
release-build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: build release distributions
run: |
python setup.py build
- name: upload build
uses: actions/upload-artifact@v4
with:
name: release-build
path: build/

pypi-publish:
runs-on: ubuntu-latest
needs:
- release-build
environment:
name: pypi
url: https://pypi.org/p/wespe
permissions:
id-token: write

steps:
- name: Retrieve release build
uses: actions/download-artifact@v4
with:
name: release-build
path: build/

- name: Publish release build to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 38f20ce

Please sign in to comment.