From 291543455631989c3290b091f7d044dc30c4c2b1 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Fri, 27 Sep 2024 02:22:12 +0300 Subject: [PATCH] chore(tooling): Simplify push to send branch and tag in sync --- Justfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Justfile b/Justfile index 50813c8..9e5ce63 100644 --- a/Justfile +++ b/Justfile @@ -20,8 +20,7 @@ release semver: pristine git add action.yml README.md rockspecs/fontproof-{{semver}}-1.rockspec git commit -m "chore: Release {{semver}}" git tag v{{semver}} - git push upstream v{{semver}} - git push upstream master + git push --atomic upstream master v{{semver}} luarocks pack rockspecs/fontproof-{{semver}}-1.rockspec gh release create v{{semver}} -t "FontProof v{{semver}}" fontproof-{{semver}}-1.src.rock