From 110f17166f0621e32608967b855d288c65f46c29 Mon Sep 17 00:00:00 2001 From: amit Date: Fri, 29 Nov 2024 11:03:46 -0800 Subject: [PATCH] update ci --- .github/workflows/ci.yml | 1 + tests/ci.rs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27bf3a0..99b735c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,3 +63,4 @@ jobs: - uses: shuttle-hq/deploy-action@v2 with: shuttle-api-key: ${{ secrets.SHUTTLE_API_KEY }} + project-id: proj_tc170d7f9 diff --git a/tests/ci.rs b/tests/ci.rs index 7da1510..60d1723 100644 --- a/tests/ci.rs +++ b/tests/ci.rs @@ -58,7 +58,8 @@ fn generate() { .add_step(Step::checkout()) .add_step( Step::uses("shuttle-hq", "deploy-action", "v2") - .add_with(("shuttle-api-key", "${{ secrets.SHUTTLE_API_KEY }}")), + .add_with(("shuttle-api-key", "${{ secrets.SHUTTLE_API_KEY }}")) + .add_with(("project-id", "proj_tc170d7f9")), ); Workflow::new("Build and Test")