We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 855d767 commit dca613aCopy full SHA for dca613a
.github/workflows/shuttle.yaml
@@ -0,0 +1,15 @@
1
+name: Shuttle deploy
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
+ workflow_dispatch:
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: deployment
13
+ uses: shuttle-hq/deploy-action@main
14
+ with:
15
+ deploy-key: ${{ secrets.SHUTTLE_DEPLOY_KEY }}
api/lib/src/health.rs
@@ -3,7 +3,7 @@ use actix_web::{
HttpResponse,
};
-pub const API_VERSION: &str = "v0.0.1";
+pub const API_VERSION: &str = "v0.0.2";
pub fn service(cfg: &mut ServiceConfig) {
cfg.route("/health", web::get().to(health_check));
0 commit comments