Skip to content

bump: version 0.8.0 → 0.9.0 #9

bump: version 0.8.0 → 0.9.0

bump: version 0.8.0 → 0.9.0 #9

Workflow file for this run

name: Release package to Pypi
on:
push:
tags:
- '[0-9].[0-9]+.[0-9]+**'
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: latest
virtualenvs-in-project: true
virtualenvs-create: true
- name: Install Dependencies
run: |
./scripts/install
- name: Build package
run: poetry build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1