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
# This workflow will upload a Python Package using Twine when a release is created | |
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | |
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Publish Python Package | |
on: | |
release: | |
types: [published] | |
env: | |
FILE_PATH: miniopy_async/__init__.py | |
NAME: L-ING | |
EMAIL: [email protected] | |
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} | |
RELEASE_VERSION: ${{ github.event.release.name }} | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'hlf20010508' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ env.GITHUB_TOKEN }} | |
- name: Update Version in Your Python Package | |
run: sed -i 's/__version__ = .*/__version__ = '\"$RELEASE_VERSION\"'/g' $FILE_PATH | |
- name: Commit and Push | |
run: | | |
git config --global user.name $NAME | |
git config --global user.email $EMAIL | |
git add -A | |
if git diff-index --quiet HEAD --; then | |
echo "Bypass commit." | |
else | |
git commit -m "chore: update version to $RELEASE_VERSION" | |
git tag -f $RELEASE_VERSION | |
git push origin HEAD:master | |
git push origin HEAD:master --tags -f | |
fi | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
- name: Build package | |
run: python -m build | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@release/v1.5 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |