Create pythonpublish.yml
This commit is contained in:
parent
59582221ee
commit
bd24f2c875
1 changed files with 25 additions and 0 deletions
25
.github/workflows/pythonpublish.yml
vendored
Normal file
25
.github/workflows/pythonpublish.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: Upload Python Package
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: '3.x'
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install poetry
|
||||
- name: Build and publish
|
||||
env:
|
||||
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
|
||||
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
||||
run: |
|
||||
poetry publish --build -u $PYPI_USERNAME -p $PYPI_PASSWORD
|
Loading…
Reference in a new issue