Skip to content

Commit

Permalink
chore: Update homestar-schemas version
Browse files Browse the repository at this point in the history
  • Loading branch information
bgins committed Feb 8, 2024
1 parent 54fc095 commit 63e778c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/schemas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ jobs:
- name: Check for modified schemas
id: git-check
shell: bash
run: |
echo modified=$(if [[ $(git diff homestar-runtime/schemas/) ]]; then echo "true"; else echo "false"; fi) >> $GITHUB_OUTPUT
run: echo modified=$(if [[ $(git diff homestar-runtime/schemas/) ]]; then echo "true"; else echo "false"; fi) >> $GITHUB_OUTPUT

- name: Push changes
if: steps.git-check.outputs.modified == 'true'
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions homestar-runtime/schemas/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
{
"name": "health",
"paramStructure": "by-name",
"paramStructure": "either",
"params": [],
"result": {
"name": "health",
Expand All @@ -62,7 +62,7 @@
},
{
"name": "metrics",
"paramStructure": "by-name",
"paramStructure": "either",
"params": [],
"result": {
"name": "metrics",
Expand Down
6 changes: 2 additions & 4 deletions homestar-schemas/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
[package]
name = "homestar-schemas"
publish = false
version = "0.1.0"
version = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }

[dependencies]
homestar-invocation = { version = "0.1", path = "../homestar-invocation", default-features = false }
homestar-runtime = { version = "0.1", path = "../homestar-runtime", default-features = false, features = [
"websocket-notify",
] }
homestar-runtime = { version = "0.1", path = "../homestar-runtime" }
homestar-workflow = { version = "0.1", path = "../homestar-workflow", default-features = false }
homestar-workspace-hack = { workspace = true }
schemars = { workspace = true }
Expand Down

0 comments on commit 63e778c

Please sign in to comment.