Skip to content

Commit

Permalink
Fix failing stoml call (#73)
Browse files Browse the repository at this point in the history
* Fix failing `stoml` call

* Dummy change to `tembo-pg-slim` to trigger CI
  • Loading branch information
vrmiguel authored Aug 30, 2024
1 parent 8572b00 commit 14a24b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_tembo_pg_slim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: |
SHORT_SHA="${{ steps.versions.outputs.SHORT_SHA }}"
TAGS=''
if [ "${{ steps.tags_list.outputs.tag_cargo }}" == "true" ]; then
if [ "${{ steps.tags_list.outputs.tag_cargo }}" == "true" ] && test -f "Cargo.toml"; then
echo "Cargo file detected, adding to tags"
VERSION=$(stoml Cargo.toml package.version)-${SHORT_SHA}
TAGS="$TAGS $VERSION"
Expand Down
2 changes: 1 addition & 1 deletion tembo-pg-slim/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
fn main() {
println!("Hello, world!");
println!("Hello, world!!");
}

0 comments on commit 14a24b2

Please sign in to comment.