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"