Skip to content

Fixed monopile thickness bug. Had to double value in mass assertion #227

Fixed monopile thickness bug. Had to double value in mass assertion

Fixed monopile thickness bug. Had to double value in mass assertion #227

Workflow file for this run

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/*