mirror of
https://gitea.0xace.cc/rust/github-release-bot.git
synced 2025-04-06 16:21:56 +00:00
Compare commits
No commits in common. "master" and "v0.1.7" have entirely different histories.
1834
Cargo.lock
generated
1834
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.10"
|
||||
version = "0.1.7"
|
||||
authors = ["ace <ace@0xace.cc>"]
|
||||
edition = "2024"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
frankenstein = { version = "0.39", features = ["client-reqwest"] }
|
||||
frankenstein = { version = "0.26", default-features = false, features = ["async-http-client"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_yaml = "0.9"
|
||||
octocrab = "0.43"
|
||||
octocrab = "0.25.1"
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
futures = "0.3"
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
log = "0.4"
|
||||
stderrlog = "0.6"
|
||||
rand = "0.9"
|
||||
stderrlog = "0.5"
|
||||
rand = "0.8"
|
||||
chrono ="0.4"
|
||||
|
7
Makefile
7
Makefile
@ -1,5 +1,4 @@
|
||||
VERSION=0.1.10
|
||||
BUILD=1
|
||||
VERSION=0.1.7
|
||||
IMAGE=github-release-bot
|
||||
ifneq ($(REGISTRY),)
|
||||
_REGISTRY =$(REGISTRY)/
|
||||
@ -8,9 +7,9 @@ endif
|
||||
.PHONY: build push all
|
||||
|
||||
build:
|
||||
docker build -t $(_REGISTRY)$(IMAGE):$(VERSION)-$(BUILD) -f docker/Dockerfile .
|
||||
docker build -t $(_REGISTRY)$(IMAGE):$(VERSION) -f docker/Dockerfile .
|
||||
|
||||
push:
|
||||
docker push $(_REGISTRY)$(IMAGE):$(VERSION)-$(BUILD)
|
||||
docker push $(_REGISTRY)$(IMAGE):$(VERSION)
|
||||
|
||||
all: build push
|
||||
|
@ -1,10 +1,10 @@
|
||||
FROM clux/muslrust:1.85.0-stable AS builder
|
||||
FROM clux/muslrust 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.21
|
||||
FROM alpine:3.18
|
||||
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.10
|
||||
version: 0.1.7
|
||||
|
||||
# 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.10"
|
||||
appVersion: "0.1.7"
|
||||
|
@ -5,10 +5,10 @@
|
||||
replicaCount: 1
|
||||
|
||||
image:
|
||||
repository: gitea.geekhome.org/rust/github-release-bot
|
||||
repository: gitea.geekhome.org/ghp/github-release-bot
|
||||
pullPolicy: IfNotPresent
|
||||
# Overrides the image tag whose default is the chart appVersion.
|
||||
tag: "0.1.10-1"
|
||||
tag: "0.1.7"
|
||||
|
||||
#env:
|
||||
# - name: TOKEN
|
||||
|
@ -9,7 +9,7 @@ use tokio;
|
||||
use log::*;
|
||||
use chrono::prelude::*;
|
||||
use frankenstein;
|
||||
use frankenstein::client_reqwest::Bot;
|
||||
use frankenstein::AsyncApi;
|
||||
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 = Bot::new(opts.token.as_str());
|
||||
let api = AsyncApi::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