Skip to content

Commit

Permalink
Ft: upload package
Browse files Browse the repository at this point in the history
  • Loading branch information
clemens-fricke committed Nov 20, 2023
1 parent 58107c8 commit f5703a0
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build_and_upload_wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: pypi upload

on:
push:
branches: ["main", "ft-packaging"]

jobs:
wheel_build_full:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: build wheels and sdist
run: pipx run build

- uses: actions/upload-artifact@v3
with:
path: ./dist/*

upload_pypi:
needs: [wheel_build_full]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist

- uses: pypa/[email protected]
with:
skip_existing: true
user: __token__
password: ${{ secrets.PYPI_RELESO }}

0 comments on commit f5703a0

Please sign in to comment.