mirror of
https://gitea.0xace.cc/rust/github-release-bot.git
synced 2025-04-06 16:21: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]
|
[package]
|
||||||
name = "github-release-bot"
|
name = "github-release-bot"
|
||||||
version = "0.1.7"
|
version = "0.1.10"
|
||||||
authors = ["ace <ace@0xace.cc>"]
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[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 = { version = "1", features = ["derive"] }
|
||||||
serde_yaml = "0.9"
|
serde_yaml = "0.9"
|
||||||
octocrab = "0.25.1"
|
octocrab = "0.43"
|
||||||
tokio = { version = "1", features = ["full"] }
|
tokio = { version = "1", features = ["full"] }
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
clap = { version = "4", features = ["derive"] }
|
clap = { version = "4", features = ["derive"] }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
stderrlog = "0.5"
|
stderrlog = "0.6"
|
||||||
rand = "0.8"
|
rand = "0.9"
|
||||||
chrono ="0.4"
|
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
|
IMAGE=github-release-bot
|
||||||
ifneq ($(REGISTRY),)
|
ifneq ($(REGISTRY),)
|
||||||
_REGISTRY =$(REGISTRY)/
|
_REGISTRY =$(REGISTRY)/
|
||||||
@ -7,9 +8,9 @@ endif
|
|||||||
.PHONY: build push all
|
.PHONY: build push all
|
||||||
|
|
||||||
build:
|
build:
|
||||||
docker build -t $(_REGISTRY)$(IMAGE):$(VERSION) -f docker/Dockerfile .
|
docker build -t $(_REGISTRY)$(IMAGE):$(VERSION)-$(BUILD) -f docker/Dockerfile .
|
||||||
|
|
||||||
push:
|
push:
|
||||||
docker push $(_REGISTRY)$(IMAGE):$(VERSION)
|
docker push $(_REGISTRY)$(IMAGE):$(VERSION)-$(BUILD)
|
||||||
|
|
||||||
all: build push
|
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
|
RUN apt-get update && apt-get install -y ca-certificates
|
||||||
WORKDIR /opt
|
WORKDIR /opt
|
||||||
ADD . .
|
ADD . .
|
||||||
RUN cargo build --release --verbose --target x86_64-unknown-linux-musl
|
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 --from=builder /opt/target/x86_64-unknown-linux-musl/release/github-release-bot /opt/github-release-bot
|
||||||
COPY ./docker/entrypoint.sh /opt/entrypoint.sh
|
COPY ./docker/entrypoint.sh /opt/entrypoint.sh
|
||||||
RUN chmod +x /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
|
# 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.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# 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
|
# 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
|
# 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.
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
# It is recommended to use it with quotes.
|
# It is recommended to use it with quotes.
|
||||||
appVersion: "0.1.7"
|
appVersion: "0.1.10"
|
||||||
|
@ -5,10 +5,10 @@
|
|||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: gitea.geekhome.org/ghp/github-release-bot
|
repository: gitea.geekhome.org/rust/github-release-bot
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# Overrides the image tag whose default is the chart appVersion.
|
# Overrides the image tag whose default is the chart appVersion.
|
||||||
tag: "0.1.7"
|
tag: "0.1.10-1"
|
||||||
|
|
||||||
#env:
|
#env:
|
||||||
# - name: TOKEN
|
# - name: TOKEN
|
||||||
|
@ -9,7 +9,7 @@ use tokio;
|
|||||||
use log::*;
|
use log::*;
|
||||||
use chrono::prelude::*;
|
use chrono::prelude::*;
|
||||||
use frankenstein;
|
use frankenstein;
|
||||||
use frankenstein::AsyncApi;
|
use frankenstein::client_reqwest::Bot;
|
||||||
use frankenstein::AsyncTelegramApi;
|
use frankenstein::AsyncTelegramApi;
|
||||||
use frankenstein::SendMessageParams;
|
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>> {
|
async fn telegram_notify(_release_tag: &String, release_url: &String) -> Result<(), Box<dyn std::error::Error>> {
|
||||||
let opts: Opts = Opts::parse();
|
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()
|
let send_message_params: SendMessageParams = SendMessageParams::builder()
|
||||||
.chat_id(opts.chatid)
|
.chat_id(opts.chatid)
|
||||||
.text(release_url)
|
.text(release_url)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user