Skip to content

updates

updates #67

Workflow file for this run

on:
push:
tags:
- v*
name: make-release
jobs:
makerelease:
name: make-release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
# Installation instructions are from: https://python-poetry.org/docs/
- name: Install poetry
shell: bash
run: |
pip install poetry
- name: Do the release
shell: bash
run: |
poetry publish --build \
--username ${{secrets.PYPI_USERNAME}} \
--password ${{secrets.PYPI_SECRET}}
# TODO: generate a nice little doc for the release text like we do for the
# cli repo.
- name: Create a Release
uses: softprops/action-gh-release@v2