Publish PyCaption to PyPI #33
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: Publish PyCaption to PyPI | |
on: workflow_dispatch | |
jobs: | |
call-unit-tests-workflow: | |
name: Run unit tests | |
uses: pbs/pycaption/.github/workflows/unit_tests.yml@main | |
secrets: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID }} | |
build-n-publish: | |
name: Build and publish PyCaption to PyPI | |
needs: call-unit-tests-workflow | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
python -m pip install --upgrade twine | |
- name: Build package | |
run: python -m build | |
timeout-minutes: 10 | |
- name: Publish package on PyPI | |
run: python -m twine upload --verbose dist/* | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} |