Skip to content

updated read simulation defaults; updated conda deps #27

updated read simulation defaults; updated conda deps

updated read simulation defaults; updated conda deps #27

Workflow file for this run

name: Publish Python Package to PyPi
on:
release:
types: [created]
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install pypa/build
run: python -m pip install build --user
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}