Skip to content

Commit

Permalink
Merge branch 'main' into app-services-app-name
Browse files Browse the repository at this point in the history
  • Loading branch information
sjmiller609 authored Dec 19, 2023
2 parents dff64b4 + 582333c commit 9f0d694
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/cargo_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
# in a pull request, and using all directories on the release
# or main branches.
changed_relative_to_ref: origin/${{ github.base_ref || 'not-a-branch' }}
ignore_dirs: "tembo-cli"


cargo_publish:
Expand Down
2 changes: 1 addition & 1 deletion tembo-cli/Cargo.lock

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

2 changes: 1 addition & 1 deletion tembo-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
workspace = { members = ["temboclient"] }
[package]
name = "tembo"
name = "tembo-cli"
version = "0.8.0"
edition = "2021"
authors = ["Tembo.io"]
Expand Down
2 changes: 1 addition & 1 deletion tembo-cli/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use assert_cmd::prelude::*; // Add methods on commands
use predicates::prelude::*; // Used for writing assertions
use std::process::Command; // Run programs

const CARGO_BIN: &str = "tembo";
const CARGO_BIN: &str = "tembo-cli";

#[test]
fn help() -> Result<(), Box<dyn std::error::Error>> {
Expand Down

0 comments on commit 9f0d694

Please sign in to comment.