Skip to content

Merge pull request #124 from NatLabRockies/try-improving-windows-cove… #18

Merge pull request #124 from NatLabRockies/try-improving-windows-cove…

Merge pull request #124 from NatLabRockies/try-improving-windows-cove… #18

Workflow file for this run

name: PyPIRelease
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: 3.12
- name: Install Pip Dependencies
run: pip install -r requirements.txt
- name: Install setuptools also
run: pip install setuptools
- name: Build the Wheel
run: python3 setup.py bdist_wheel sdist
- name: Deploy on Test PyPi
uses: pypa/gh-action-pypi-publish@37f50c210e3d2f9450da2cd423303d6a14a6e29f # v1.5.1
with:
user: __token__
password: ${{ secrets.PYPIPW }}