From 950add40a355b2b369f64c336a6810dfdaa34aaf Mon Sep 17 00:00:00 2001 From: Simon Bernier St-Pierre Date: Sat, 8 Aug 2026 16:46:41 -0400 Subject: [PATCH] tag cmd should also push [skip ci] --- justfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 87e3ace..fcd5bcb 100644 --- a/justfile +++ b/justfile @@ -20,6 +20,8 @@ tag ver: git add Cargo.toml Cargo.lock git commit -m "version {{ver}} [skip ci]" git tag "{{ver}}" + git push + git push --tags # Run the Rust unit tests. # Usage: just test @@ -34,4 +36,4 @@ fmt: # Run the end-to-end Playwright tests. # Usage: just e2e e2e: - cd e2e && npm test \ No newline at end of file + cd e2e && npm test