Compare commits

...

4 Commits

Author SHA1 Message Date
ace
0d214b330e
update deps, bump version to 0.1.10 2025-02-25 00:56:17 +03:00
ace
7b4b235fd9
update deps, bump version to 0.1.9 and make new image with helm chart 2025-02-25 00:29:18 +03:00
ace
55d8f50abf
bump to v0.1.8 2023-12-18 01:21:59 +03:00
ace
b2d186e772
update deps and rebuild 2023-12-18 01:06:44 +03:00
7 changed files with 1133 additions and 718 deletions

1816
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,20 +1,20 @@
[package]
name = "github-release-bot"
version = "0.1.7"
version = "0.1.10"
authors = ["ace <ace@0xace.cc>"]
edition = "2021"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
frankenstein = { version = "0.26", default-features = false, features = ["async-http-client"] }
frankenstein = { version = "0.39", features = ["client-reqwest"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
octocrab = "0.25.1"
octocrab = "0.43"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
clap = { version = "4", features = ["derive"] }
log = "0.4"
stderrlog = "0.5"
rand = "0.8"
stderrlog = "0.6"
rand = "0.9"
chrono ="0.4"

View File

@ -1,4 +1,5 @@
VERSION=0.1.7
VERSION=0.1.10
BUILD=1
IMAGE=github-release-bot
ifneq ($(REGISTRY),)
_REGISTRY =$(REGISTRY)/
@ -7,9 +8,9 @@ endif
.PHONY: build push all
build:
docker build -t $(_REGISTRY)$(IMAGE):$(VERSION) -f docker/Dockerfile .
docker build -t $(_REGISTRY)$(IMAGE):$(VERSION)-$(BUILD) -f docker/Dockerfile .
push:
docker push $(_REGISTRY)$(IMAGE):$(VERSION)
docker push $(_REGISTRY)$(IMAGE):$(VERSION)-$(BUILD)
all: build push

View File

@ -1,10 +1,10 @@
FROM clux/muslrust as builder
FROM clux/muslrust:1.85.0-stable AS builder
RUN apt-get update && apt-get install -y ca-certificates
WORKDIR /opt
ADD . .
RUN cargo build --release --verbose --target x86_64-unknown-linux-musl
FROM alpine:3.18
FROM alpine:3.21
COPY --from=builder /opt/target/x86_64-unknown-linux-musl/release/github-release-bot /opt/github-release-bot
COPY ./docker/entrypoint.sh /opt/entrypoint.sh
RUN chmod +x /opt/entrypoint.sh

View File

@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.7
version: 0.1.10
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.1.7"
appVersion: "0.1.10"

View File

@ -5,10 +5,10 @@
replicaCount: 1
image:
repository: gitea.geekhome.org/ghp/github-release-bot
repository: gitea.geekhome.org/rust/github-release-bot
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "0.1.7"
tag: "0.1.10-1"
#env:
# - name: TOKEN

View File

@ -9,7 +9,7 @@ use tokio;
use log::*;
use chrono::prelude::*;
use frankenstein;
use frankenstein::AsyncApi;
use frankenstein::client_reqwest::Bot;
use frankenstein::AsyncTelegramApi;
use frankenstein::SendMessageParams;
@ -150,7 +150,7 @@ async fn overwrite_repo_file(filename: impl AsRef<std::path::Path>, release_tag:
async fn telegram_notify(_release_tag: &String, release_url: &String) -> Result<(), Box<dyn std::error::Error>> {
let opts: Opts = Opts::parse();
let api = AsyncApi::new(opts.token.as_str());
let api = Bot::new(opts.token.as_str());
let send_message_params: SendMessageParams = SendMessageParams::builder()
.chat_id(opts.chatid)
.text(release_url)