Skip to content

Merge pull request #40 from mloubout/fix-vel-file #16

Merge pull request #40 from mloubout/fix-vel-file

Merge pull request #40 from mloubout/fix-vel-file #16

Workflow file for this run

name: Deploy to PyPI
on:
push:
tags:
- 'v*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Build package
run: |
python -m pip install build
python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}