chg: [RELEASE] Bumped version number and aligned pyproject.toml file with standard specification.
Some checks failed
Python application / build (3.10) (push) Has been cancelled
Python application / build (3.11) (push) Has been cancelled
Python application / build (3.12) (push) Has been cancelled

This commit is contained in:
Cédric Bonhomme 2025-02-13 18:14:40 +01:00
parent 7849955cdb
commit 2e8b0fdec9
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
6 changed files with 179 additions and 147 deletions

View file

@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
pip install poetry
poetry install
poetry install --with dev
- name: Lint with flake8
run: |

27
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,27 @@
on:
release:
types:
- published
name: release
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/Stegano
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Poetry
run: python -m pip install --upgrade pip poetry
- name: Build artifacts
run: poetry build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1