Skip to content

Bump to 1.0.0

Bump to 1.0.0 #3

Workflow file for this run

name: Build package
on:
push:
tags:
- "*.*.*"
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install poetry
uses: abatilo/actions-poetry@v2
- uses: actions/cache@v3
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install the project dependencies
run: poetry install
- name: Build package
run: poetry build
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
dist/*