Files
release/pyproject.toml
David Übler 48ad43755c
All checks were successful
run tests / unittest (pull_request) Successful in 13s
run tests / test-declare-default (pull_request) Successful in 14s
check if project is already released / unittest (pull_request) Successful in 25s
run tests / test-sync-versions (pull_request) Successful in 24s
run tests / test-is-not-yet-released (pull_request) Successful in 22s
run tests / test-skip-release-if-already-released (pull_request) Successful in 24s
run tests / test-declare-with-release-yaml (pull_request) Successful in 22s
run tests / test-declare-directly (pull_request) Successful in 22s
Version 0.1.0
2026-01-09 07:55:33 +01:00

19 lines
380 B
TOML

[project]
name = "gitea-release-action"
version = "0.1.0"
description = "reusable action for release workflows"
authors = [ ]
requires-python = ">=3.13"
dependencies = [
"semver",
"toml",
"requests",
"pyyaml",
"packaging"
]
[project.scripts]
gitea-release-action = "main:main_cli"
increment-version = "increment_version:main_cli"
tell-version = "tell_version:main_cli"