From 096286c203b2d801aef573318a41241698603db1 Mon Sep 17 00:00:00 2001 From: Denis Rozhnovskiy Date: Sun, 21 Jul 2024 17:26:51 +0500 Subject: [PATCH] Bump version to 0.1.0 --- .github/workflows/0.1.0_ci.yml | 29 +++++++++++++++++++++++++++++ README.md | 1 - app/__init__.py | 2 +- docs/docker.md | 1 - pyproject.toml | 2 +- 5 files changed, 31 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/0.1.0_ci.yml diff --git a/.github/workflows/0.1.0_ci.yml b/.github/workflows/0.1.0_ci.yml new file mode 100644 index 00000000..380fd4af --- /dev/null +++ b/.github/workflows/0.1.0_ci.yml @@ -0,0 +1,29 @@ +name: CI 0.0.9 tag + +on: + schedule: + - cron: '0 9 * * *' + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: https://github.com/orenlab/pytmbot.git#v0.1.0 + build-args: --target prod + sbom: True + provenance: True + file: hub.Dockerfile + push: true + tags: orenlab/pytmbot:0.1.0 \ No newline at end of file diff --git a/README.md b/README.md index 15a830f7..d32da0d5 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,6 @@ gather information. - And of course we use emoji 😅 Screenshots are available here: [screenshots.md](docs/screenshots.md). -Video demo see in YouTube Shorts [here](https://youtube.com/shorts/81RE_PNjxLQ?feature=shared) ## 🕸 Requirements diff --git a/app/__init__.py b/app/__init__.py index c4355600..c064eb69 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -17,7 +17,7 @@ config = BotSettings() # Set global name -__version__ = 'v0.1.0-pre-release' +__version__ = 'v0.1.0' __author__ = 'Denis Rozhnovskiy ' __license__ = 'MIT' __repository__ = 'https://github.com/orenlab/pytmbot' diff --git a/docs/docker.md b/docs/docker.md index f957ac8e..660a45f8 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -29,7 +29,6 @@ synchronously. It does not use webhooks. - And of course we use emoji 😅 Screenshots are available here: [screenshots.md](https://github.com/orenlab/pytmbot/blob/master/docs/screenshots.md). -Video demo see in YouTube Shorts [here](https://youtube.com/shorts/81RE_PNjxLQ?feature=shared) ## 🐋 pyTMBot tag info diff --git a/pyproject.toml b/pyproject.toml index 7a52d36a..2ef4538a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyTMBot" -version = "0.1.0-pre" +version = "0.1.0" description = "A simple Telegram bot designed to gather basic information about the status of your local computers and/or servers from Glances" authors = ["Denis Rozhnovskiy "] readme = "README.md"