Skip to content

Removed locCut from the parse args and decision making, added locCut9… #2

Removed locCut from the parse args and decision making, added locCut9…

Removed locCut from the parse args and decision making, added locCut9… #2

Workflow file for this run

name: Deploy to PyPI
on:
push:
tags:
- 'v*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install dependencies
run: |
python --version
pip install -U build
python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}