my new update
Build Docker images / push-nightly-image (push) Successful in 2m20s Details
Build Docker images / push-release-image (push) Successful in 3m2s Details

This commit is contained in:
minish 2023-08-31 00:38:39 -04:00
parent fae9613ca2
commit d8bb654587
Signed by: min
GPG Key ID: FEECFF24EF0CE9E9
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -4,7 +4,7 @@ version = 3
[[package]] [[package]]
name = "actions-test" name = "actions-test"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"axum", "axum",
"hyper", "hyper",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "actions-test" name = "actions-test"
version = "0.1.0" version = "0.1.1"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@ -1,7 +1,7 @@
use axum::{Router, routing::get}; use axum::{Router, routing::get};
async fn index() -> &'static str { async fn index() -> &'static str {
"hi world" "hi world!"
} }
#[tokio::main] #[tokio::main]