1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-22 20:36:17 +02:00
ultrajson/.github/workflows/deploy.yml
2021-03-05 15:05:11 +02:00

51 lines
1.2 KiB
YAML

name: Deploy
on:
push:
branches:
- master
release:
types:
- published
jobs:
build:
if: github.repository == 'ultrajson/ultrajson'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: |
git fetch --prune --unshallow
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U setuptools twine wheel
- name: Build package
run: |
git tag
python setup.py --version
python setup.py sdist --format=gztar
twine check dist/*
- name: Publish package to PyPI
if: github.event.action == 'published'
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}
- name: Publish package to TestPyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.test_pypi_password }}
repository_url: https://test.pypi.org/legacy/