v1.5.3.2 #12
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 | |
name: Upload Python Package | |
on: | |
release: | |
types: [created] | |
secrets: | |
PYPI_API_KEY: | |
required: true | |
workflow_dispatch: | |
inputs: | |
version: | |
type: string | |
description: Version number | |
required: true | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Establish variables | |
id: vars | |
run: | | |
echo "version=${{ github.event.inputs.version || github.event.release.tag_name }}" >> "$GITHUB_OUTPUT" | |
echo "today=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT" | |
echo "year=$(date +'%Y')" >> "$GITHUB_OUTPUT" | |
- name: Update version number | |
uses: jacobtomlinson/[email protected] | |
with: | |
find: "VERSIONADDEDBYGITHUB" | |
replace: "${{ steps.vars.outputs.version }}" | |
regex: false | |
- name: Update copyright year | |
uses: jacobtomlinson/[email protected] | |
with: | |
find: "YEARADDEDBYGITHUB" | |
replace: "${{ steps.vars.outputs.year }}" | |
regex: false | |
- name: Install Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
- name: Build | |
run: | | |
make install | |
make build | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_KEY }} |