diff --git a/.github/workflows/Release-pypi.yml b/.github/workflows/Release.yml similarity index 84% rename from .github/workflows/Release-pypi.yml rename to .github/workflows/Release.yml index 1f75436..6f7d4e1 100644 --- a/.github/workflows/Release-pypi.yml +++ b/.github/workflows/Release.yml @@ -1,10 +1,13 @@ -name: Release-pypi +name: Release on: workflow_dispatch: + push: + tags: + - "v*" jobs: - Pypi: + Release: strategy: matrix: python-version: ["3.9"] @@ -32,3 +35,6 @@ jobs: uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API }} + + - name: Release + uses: softprops/action-gh-release@v2 diff --git a/README.md b/README.md index 6794814..8e9b5dc 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![PyPI version](https://badge.fury.io/py/ccrestoration.svg)](https://badge.fury.io/py/ccrestoration) ![GitHub](https://img.shields.io/github/license/TensoRaws/ccrestoration) -an inference framework for image/video restoration with VapourSynth support, compatible with [many community models](https://openmodeldb.info/) +an inference lib for image/video restoration with VapourSynth support, compatible with [many community models](https://openmodeldb.info/) ### Install diff --git a/pyproject.toml b/pyproject.toml index e5fd64f..699cac0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,13 +34,13 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12" ] -description = "an inference framework for image/video restoration with VapourSynth support" +description = "an inference lib for image/video restoration with VapourSynth support" homepage = "https://github.com/TensoRaws/ccrestoration" license = "MIT" name = "ccrestoration" readme = "README.md" repository = "https://github.com/TensoRaws/ccrestoration" -version = "0.0.12" +version = "0.1.0" # Requirements [tool.poetry.dependencies]