Merge pull request #13 from caffeine-addictt/doc-update-for-pre-relea… #15
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: Upload Python Package | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- v*.*.* | |
permissions: | |
contents: read | |
jobs: | |
pypi-publish: | |
name: Upload release to PyPI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build and publish | |
uses: JRubics/[email protected] | |
with: | |
pypi_token: ${{ secrets.PYPI_TOKEN }} | |
# # Specifying a GitHub environment is optional, but strongly encouraged | |
# environment: release | |
# permissions: | |
# # IMPORTANT: this permission is mandatory for trusted publishing | |
# id-token: write | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - name: Setup Python | |
# uses: actions/setup-python@v4 | |
# with: | |
# python-version: "3.x" | |
# - name: Build distribution | |
# uses: | | |
# python3 -m pip install -U pip | |
# python3 -m pip install -U build --user | |
# python3 -m build | |
# - name: Store the distribution packages | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: python-package-distributions | |
# path: dist/ | |
# - name: Download distribution packages | |
# uses: actions/download-artifact@v3 | |
# with: | |
# name: python-package-distributions | |
# path: dist/ | |
# - name: Publish package distributions to PyPI | |
# uses: pypa/gh-action-pypi-publish@release/v1 |