mirror of
https://gitea.0xace.cc/rust/github-release-bot.git
synced 2025-04-05 07:41:56 +00:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
0d214b330e | |||
7b4b235fd9 | |||
55d8f50abf | |||
b2d186e772 |
1816
Cargo.lock
generated
1816
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
12
Cargo.toml
12
Cargo.toml
@ -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"
|
||||
|
7
Makefile
7
Makefile
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user