1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00
maloja/.github/workflows/pypi.yml

30 lines
665 B
YAML
Raw Normal View History

2021-12-15 09:19:01 +03:00
name: Publish Package to PyPI
on:
push:
tags:
- 'v*.*.*'
jobs:
publish_to_pypi:
name: Publish a new version to PyPI
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Install dependencies
run: pip install wheel setuptools
2021-12-16 08:28:53 +03:00
- name: Install Python dependencies
run: pip install -r requirements.txt
2021-12-15 09:19:01 +03:00
- name: Build package
run: python setup.py sdist bdist_wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}