Skip to content

[python](deps): Bump tqdm from 4.66.1 to 4.66.5 #46

[python](deps): Bump tqdm from 4.66.1 to 4.66.5

[python](deps): Bump tqdm from 4.66.1 to 4.66.5 #46

Workflow file for this run

name: Publish Python Package
on:
pull_request:
branches:
- master
types:
- closed
permissions:
contents: write
jobs:
deploy:
# Only run if the closed pull request was merged, and didn't contain the `skip-release` tag
if: ${{ (github.event.pull_request.merged == true) && (!contains(github.event.pull_request.labels.*.name, 'skip-release')) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Get package version
run: echo "PACKAGE_VERSION=$(poetry version -s)" >> $GITHUB_ENV
- name: Build and publish to PyPI
run: poetry publish --build -u __token__ -p $PYPI_API_TOKEN
env:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
- name: Create Tag Release
uses: beyond5959/create-release-github@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ env.PACKAGE_VERSION }}
release_name: v${{ env.PACKAGE_VERSION }}
draft: false
prerelease: false