Update publish.yml #2
Workflow file for this run
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 | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- "*.*.*" | |
jobs: | |
publish: | |
name: Publish the package on pypi | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v2 | |
# This is the version of python used to package the code. The unit | |
# tests will have run against python 3.6, 3.7 etc ensuring | |
# compatibility with those runtimes. | |
# https://github.com/axnsan12/drf-yasg/pull/741#discussion_r713297594 | |
- name: Set the python version | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
uses: ./.github/actions/install | |
with: | |
python-version: 3.8 | |
- name: Install builders for publishing | |
run: pip install -r requirements/publish.txt | |
- name: Build the distributions | |
run: python setup.py sdist bdist_wheel | |
- name: Publish the package | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |