mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
27 lines
499 B
YAML
27 lines
499 B
YAML
|
name: Deploy Python Package
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- '*'
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Set up Python
|
||
|
uses: actions/setup-python@v2
|
||
|
with:
|
||
|
python-version: '3.11'
|
||
|
|
||
|
- name: Build package
|
||
|
run: |
|
||
|
python setup.py sdist bdist_wheel
|
||
|
|
||
|
- name: Publish to PyPI
|
||
|
uses: pypa/gh-action-pypi-publish@v1.4.2
|
||
|
with:
|
||
|
user: __token__
|
||
|
password: ${{ secrets.PYPI_API_TOKEN }}
|