Skip to content

fix: add missing newline at end of files and improve code formatting … #9

fix: add missing newline at end of files and improve code formatting …

fix: add missing newline at end of files and improve code formatting … #9

Workflow file for this run

name: Release and Publish
on:
push:
tags:
- 'v*.*.*'
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
export PATH="$HOME/.local/bin:$PATH"
poetry --version
- name: Install dependencies
run: poetry install
- name: Build package
run: poetry build
- name: Create GitHub Release
uses: softprops/[email protected]
with:
generate_release_notes: true
files: |
dist/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to PyPI
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
run: yes | poetry publish --build