Skip to content

Bump to version 2024.10.0 #56

Bump to version 2024.10.0

Bump to version 2024.10.0 #56

Workflow file for this run

name: Build and Publish to PyPi
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install build dependencies (pypa/build)
run: |
pip3 install -U pip
pip3 install build
- name: Build distribution
run: |
python3 -m build
- name: Publish package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}