We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 170d7f9 commit 110f171Copy full SHA for 110f171
.github/workflows/ci.yml
@@ -63,3 +63,4 @@ jobs:
63
- uses: shuttle-hq/deploy-action@v2
64
with:
65
shuttle-api-key: ${{ secrets.SHUTTLE_API_KEY }}
66
+ project-id: proj_tc170d7f9
tests/ci.rs
@@ -58,7 +58,8 @@ fn generate() {
58
.add_step(Step::checkout())
59
.add_step(
60
Step::uses("shuttle-hq", "deploy-action", "v2")
61
- .add_with(("shuttle-api-key", "${{ secrets.SHUTTLE_API_KEY }}")),
+ .add_with(("shuttle-api-key", "${{ secrets.SHUTTLE_API_KEY }}"))
62
+ .add_with(("project-id", "proj_tc170d7f9")),
);
Workflow::new("Build and Test")
0 commit comments