diff --git a/.github/workflows/schemas.yml b/.github/workflows/schemas.yml index cd2d4d66..48561150 100644 --- a/.github/workflows/schemas.yml +++ b/.github/workflows/schemas.yml @@ -2,8 +2,7 @@ name: 📄 Schemas on: push: - branches: [main, "bgins/run-schemas-*"] - # branches: [main, "release-plz-*"] + branches: [main, "release-plz-*"] # branches: [main, "**"] permissions: @@ -67,7 +66,6 @@ jobs: run: echo modified=$(if [[ $(git diff homestar-runtime/schemas/) ]]; then echo "true"; else echo "false"; fi) >> $GITHUB_OUTPUT - name: Push changes to main - # if: github.ref_name == 'main' && (steps.git-check-schemas.outputs.modified == 'true' && (needs.changes.outputs.rust == 'true' || needs.changes.outputs.manifest == 'true')) if: >- ${{ github.ref_name == 'main' && (steps.git-check-schemas.outputs.modified == 'true' && @@ -82,9 +80,8 @@ jobs: git push - name: Push changes to release-plz branch - # if: startsWith(github.ref_name, 'bgins/run-schemas') && (steps.git-check-schemas.outputs.modified == 'true' && needs.changes.outputs.manifest == 'true') if: >- - ${{ startsWith(github.ref_name, 'bgins/run-schemas') && + ${{ startsWith(github.ref_name, 'release-plz') && (steps.git-check-schemas.outputs.modified == 'true' && needs.changes.outputs.manifest == 'true') }} run: | diff --git a/Cargo.lock b/Cargo.lock index fd789165..e34288eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2523,7 +2523,7 @@ dependencies = [ [[package]] name = "homestar-invocation" -version = "0.2.1" +version = "0.2.0" dependencies = [ "anyhow", "async-recursion", @@ -2552,7 +2552,7 @@ dependencies = [ [[package]] name = "homestar-runtime" -version = "0.2.1" +version = "0.2.0" dependencies = [ "anyhow", "assert_cmd", @@ -2667,7 +2667,7 @@ dependencies = [ [[package]] name = "homestar-schemas" -version = "0.2.1" +version = "0.2.0" dependencies = [ "homestar-invocation", "homestar-runtime", @@ -2680,7 +2680,7 @@ dependencies = [ [[package]] name = "homestar-wasm" -version = "0.2.1" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -2708,7 +2708,7 @@ dependencies = [ [[package]] name = "homestar-workflow" -version = "0.2.1" +version = "0.2.0" dependencies = [ "fxhash", "homestar-invocation", diff --git a/Cargo.toml b/Cargo.toml index 695b96b0..d243f730 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ edition = "2021" license = "Apache-2.0" repository = "https://github.com/ipvm-wg/homestar" rust-version = "1.75.0" -version = "0.2.1" +version = "0.2.0" [workspace.dependencies] anyhow = { version = "1.0", features = ["backtrace"] } diff --git a/homestar-invocation/src/task/instruction/nonce.rs b/homestar-invocation/src/task/instruction/nonce.rs index 3b7fcf3d..a821a111 100644 --- a/homestar-invocation/src/task/instruction/nonce.rs +++ b/homestar-invocation/src/task/instruction/nonce.rs @@ -108,7 +108,7 @@ impl JsonSchema for Nonce { instance_type: Some(SingleOrVec::Single(InstanceType::String.into())), metadata: Some(Box::new(Metadata { description: Some( - "A 12-byte or 16-byte nonc. Use empty string for no nonce.".to_string(), + "A 12-byte or 16-byte nonce. Use empty string for no nonce.".to_string(), ), ..Default::default() })),