Skip to content

Patch version

Patch version #24

Workflow file for this run

name: Python package
on:
push:
tags:
- "*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# If there isn't a release for this version, create a new one.
- uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
makeLatest: true
prerelease: true
skipIfReleaseExists: true
# Build and publish the package to pypi.
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
python_version: "3.8"
pypi_token: ${{ secrets.PYPI_TOKEN }}
package_directory: "opshin"
ignore_dev_requirements: "yes"