Skip to content

Commit

Permalink
build(release): always generate task json
Browse files Browse the repository at this point in the history
  • Loading branch information
gibfahn committed Aug 5, 2024
1 parent 81e69ad commit a7e8268
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions meta/release
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,6 @@ main() {
gsed -i -E "0,/^version = \"${last_release?}\"\$/s//version = \"${new_version?}\"/" Cargo.toml
log_and_run cargo check --release # Bumps version in lockfile too.

# Generate the JSON schema for a task.
cargo run -- schema $task_schema_json

log_section "Committing version updates..."
git add Cargo.toml Cargo.lock CHANGELOG.md
git commit -m "chore: bump version to ${new_version?}"
Expand All @@ -128,6 +125,9 @@ main() {
log_and_run cargo nextest run --release --run-ignored=all --no-fail-fast
fi

# Generate the JSON schema for a task.
cargo run -- schema $task_schema_json

log_section "Running end-to-end tests..."
# Run End-to-End tests and build Linux binaries:
log_and_run meta/bootstrap-test
Expand Down

0 comments on commit a7e8268

Please sign in to comment.