Skip to content

feat: Use Stan 2.34.1 #23

feat: Use Stan 2.34.1

feat: Use Stan 2.34.1 #23

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "*.*.*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry~=1.7.1
- name: Build and publish
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
python -m poetry publish --build -u __token__ -p $PYPI_TOKEN