mirror of
https://github.com/2061360308/NeteaseCloudMusic_PythonSDK.git
synced 2024-11-22 15:13:45 +00:00
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
|
name: Publish Python 🐍 distributions 📦 to PyPI
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- '*'
|
||
|
|
||
|
jobs:
|
||
|
build-n-publish:
|
||
|
name: Build and publish Python 🐍 distributions 📦 to PyPI
|
||
|
runs-on: ubuntu-18.04
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Set up Python
|
||
|
uses: actions/setup-python@v2
|
||
|
with:
|
||
|
python-version: 3.11
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: |
|
||
|
python -m pip install build towncrier
|
||
|
|
||
|
- name: Generate release notes to "RELEASE_NOTES" Environment Variable
|
||
|
run: |
|
||
|
echo "RELEASE_NOTES=$(towncrier --draft)" >> $GITHUB_ENV
|
||
|
|
||
|
- name: Generate version notes with towncrier
|
||
|
run: |
|
||
|
towncrier --yes
|
||
|
|
||
|
- name: Build a binary wheel and a source tarball
|
||
|
run: |
|
||
|
cd package
|
||
|
python setup.py build
|
||
|
|
||
|
- name: Publish distribution 📦 to PyPI
|
||
|
run: |
|
||
|
cd package
|
||
|
pip install twine
|
||
|
twine upload dist/*
|
||
|
env:
|
||
|
TWINE_USERNAME: __token__
|
||
|
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
||
|
|
||
|
- name: Create Release
|
||
|
uses: actions/create-release@v1
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
||
|
with:
|
||
|
tag_name: ${{ github.ref }}
|
||
|
release_name: Release ${{ github.ref }}
|
||
|
body: ${{ env.RELEASE_NOTES }}
|