initial #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release on PYPI | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
if: github.repository == 'bnzk/django-postgres-searchindex' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
- name: Install build dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade setuptools wheel twine | |
- name: Build | |
run: | | |
python setup.py sdist | |
python setup.py bdist_wheel --universal | |
- name: Publish | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USER_BNZK }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PW_BNZK }} | |
run: twine upload dist/* |