From 0c8d6a35459a7ab9cea9a0ba36a10e9e9eb4a72c Mon Sep 17 00:00:00 2001 From: Rory <rory.jennings@nexusmods.com> Date: Tue, 24 Nov 2020 08:46:57 +0000 Subject: [PATCH] feat: add run-all-pipelines flag --- src/release.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/release.sh b/src/release.sh index d20507b..d5dca30 100755 --- a/src/release.sh +++ b/src/release.sh @@ -23,6 +23,11 @@ while :; do git push origin "$TAG" exit ;; + -a|--run-all-pipelines) + # Push both together without skipping the CI job + git push --follow-tags + exit + ;; --) # End of options shift -- GitLab