mirror of
https://gitea.0xace.cc/rust/github-release-bot.git
synced 2025-04-04 23:31:57 +00:00
update deps, bump version to 0.1.9 and make new image with helm chart
This commit is contained in:
parent
55d8f50abf
commit
7b4b235fd9
1572
Cargo.lock
generated
1572
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,16 +1,16 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "github-release-bot"
|
name = "github-release-bot"
|
||||||
version = "0.1.7"
|
version = "0.1.9"
|
||||||
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.29.1", 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.32.0"
|
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"] }
|
||||||
|
2
Makefile
2
Makefile
@ -1,4 +1,4 @@
|
|||||||
VERSION=0.1.8
|
VERSION=0.1.9
|
||||||
BUILD=1
|
BUILD=1
|
||||||
IMAGE=github-release-bot
|
IMAGE=github-release-bot
|
||||||
ifneq ($(REGISTRY),)
|
ifneq ($(REGISTRY),)
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
FROM clux/muslrust:1.74.1 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.8
|
version: 0.1.9
|
||||||
|
|
||||||
# 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.8"
|
appVersion: "0.1.9"
|
||||||
|
@ -8,7 +8,7 @@ image:
|
|||||||
repository: gitea.geekhome.org/rust/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.8-1"
|
tag: "0.1.9-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