Skip to content

Commit

Permalink
Bump version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
orenlab committed Jul 21, 2024
1 parent 3e37b9d commit 096286c
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 4 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/0.1.0_ci.yml
Original file line number Diff line number Diff line change
@@ -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
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
config = BotSettings()

# Set global name
__version__ = 'v0.1.0-pre-release'
__version__ = 'v0.1.0'
__author__ = 'Denis Rozhnovskiy <pytelemonbot@mail.ru>'
__license__ = 'MIT'
__repository__ = 'https://github.com/orenlab/pytmbot'
Expand Down
1 change: 0 additions & 1 deletion docs/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <pytelemonbot@mail.ru>"]
readme = "README.md"
Expand Down

0 comments on commit 096286c

Please sign in to comment.