diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a6860ff..57b851e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -33,4 +33,4 @@ jobs: uses: actions/upload-artifact@v3.1.2 with: name: jokkit-backend - path: /backend/target/release/jokkit-backend.exe + path: backend/target/release/jokkit-backend.exe diff --git a/backend/src/main.rs b/backend/src/main.rs index a76db60..a200001 100644 --- a/backend/src/main.rs +++ b/backend/src/main.rs @@ -4,7 +4,9 @@ use axum::{routing::get, Router}; async fn main() { let app = Router::new().route( "/", - get(|| async { "Hello, world! This is Jokkit. This time for sure! We will delete this!" }), + get(|| async { + "Hello, world! This is Jokkit. This time for sure! We will delete this! Getting old.." + }), ); axum::Server::bind(&"0.0.0.0:3000".parse().unwrap())