Skip to content

Bump to 1.2.3

Bump to 1.2.3 #38

Workflow file for this run

---
name: Publish Package
on:
push:
tags: [ "v*" ]
jobs:
publish:
runs-on: ubuntu-latest
environment: publish
permissions:
id-token: write
# No strategeies needed for publish
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.workflow_run.head_branch }}
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.4.1
- name: Create environment
run: poetry install
- name: Build
run: poetry build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1