INTRODUCING yt-music #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: Publish version changes to PyPI | |
on: | |
push: | |
paths: | |
- "yt_music/__version__.py" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking out repository content | |
uses: actions/checkout@v2 | |
- name: Setting up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: Build the file | |
run: | | |
pip install setuptools wheel | |
python setup.py sdist | |
- name: Publish a Python distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} |