mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
Add workflow for publishing to PyPI [Test]
This commit is contained in:
parent
61b7928758
commit
645d244c2d
1 changed files with 24 additions and 0 deletions
24
.github/workflows/pypi-publish.yml
vendored
Normal file
24
.github/workflows/pypi-publish.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
name: PyPI publish
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
push:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v1
|
||||||
|
with:
|
||||||
|
python-version: 3.x
|
||||||
|
- name: Install dependencies
|
||||||
|
run: python -m pip install wheel
|
||||||
|
- name: Build
|
||||||
|
run: python setup.py sdist bdist_wheel
|
||||||
|
- name: Publish to PyPI
|
||||||
|
uses: pypa/gh-action-pypi-publish@master
|
||||||
|
with:
|
||||||
|
user: __token__
|
||||||
|
password: ${{ secrets.pypi_password }}
|
Loading…
Add table
Add a link
Reference in a new issue