Skip to content

Commit

Permalink
Merge branch 'tailcallhq:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
imperivox authored Nov 29, 2024
2 parents eb9e644 + 170d7f9 commit b9b3486
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: shuttle-hq/deploy-action/deploy-action@vmain
- uses: shuttle-hq/deploy-action@v2
with:
deploy-key: ${{ secrets.SHUTTLE_API_KEY }}
shuttle-api-key: ${{ secrets.SHUTTLE_API_KEY }}
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tests/ci.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fn generate() {
let build = Job::new("Build and Test")
.permissions(Permissions::default().contents(Level::Read))
.add_step(Step::checkout())
.add_step(Step::uses("arduino", "setup-protoc", "3"))
.add_step(Step::uses("arduino", "setup-protoc", "v3"))
.add_step(
Toolchain::default()
.add_stable()
Expand Down Expand Up @@ -57,8 +57,8 @@ fn generate() {
.runs_on("ubuntu-latest")
.add_step(Step::checkout())
.add_step(
Step::uses("shuttle-hq/deploy-action", "deploy-action", "main")
.add_with(("deploy-key", "${{ secrets.SHUTTLE_API_KEY }}")),
Step::uses("shuttle-hq", "deploy-action", "v2")
.add_with(("shuttle-api-key", "${{ secrets.SHUTTLE_API_KEY }}")),
);

Workflow::new("Build and Test")
Expand Down

0 comments on commit b9b3486

Please sign in to comment.