Добавлен билд для проверки состояния

This commit is contained in:
2024-12-30 23:49:59 +03:00
parent e5293cbf05
commit 1f9e6c8c4e
2 changed files with 31 additions and 1 deletions

View File

@ -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

View File

@ -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"