Skip to content

Merge pull request #158 from WISDEM/SemiTaut_Mooring_Update #240

Merge pull request #158 from WISDEM/SemiTaut_Mooring_Update

Merge pull request #158 from WISDEM/SemiTaut_Mooring_Update #240

name: Upload to PyPi
on: push
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
if: startsWith(github.ref, 'refs/tags/v')
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*