From 1f9e6c8c4ea8643c295b9ae17e54af09f6b16da2 Mon Sep 17 00:00:00 2001 From: Miwory Date: Mon, 30 Dec 2024 23:49:59 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=B1=D0=B8=D0=BB=D0=B4=20=D0=B4=D0=BB=D1=8F=20=D0=BF?= =?UTF-8?q?=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=BA=D0=B8=20=D1=81=D0=BE=D1=81?= =?UTF-8?q?=D1=82=D0=BE=D1=8F=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/latest.yaml | 30 ++++++++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 .gitea/workflows/latest.yaml diff --git a/.gitea/workflows/latest.yaml b/.gitea/workflows/latest.yaml new file mode 100644 index 0000000..49ca7aa --- /dev/null +++ b/.gitea/workflows/latest.yaml @@ -0,0 +1,30 @@ +name: Build And Push +run-name: ${{ github.actor }} is runs ci pipeline +on: + push: + branches: + - latest + +jobs: + publish: + runs-on: ubuntu-latest + env: + RUNNER_TOOL_CACHE: /toolcache + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Install uv + uses: astral-sh/setup-uv@v3 + + - name: Set up Python + run: uv python install + + - name: Install the project + run: uv sync + + - name: Linter & Formatter + run: uv run pre-commit run --all-files diff --git a/pyproject.toml b/pyproject.toml index eef9b84..9b06dd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "telegramstickersgenerator" -version = "1.0.1" +version = "1.0.2" description = "A simple tool to convert any images and/or gifs to webm extension so that they can be used to create animated sticker/emoji packs in Telegram." readme = "README.md" requires-python = ">=3.13"