Skip to content

Release 0.0.1

Release 0.0.1 #1

Workflow file for this run

name: Publish to StreamStoryPyClient PyPI
on:
release:
types: [created]
jobs:
build-and-publish:
name: Build and publish StreamStoryPyClient to PyPI
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install poetry
run: pip install poetry
- name: Build and publish
env:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
run: |
poetry config pypi-token.pypi $PYPI_API_TOKEN
poetry build
poetry publish