From 20b88b60784bd61242b5605292761a87dd4367dd Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 21 Mar 2024 12:05:31 -0400 Subject: [PATCH] Add a script for bumping the extension CLI (#9646) This PR adds a script for bumping the extension CLI (thus kicking off a new build). Release Notes: - N/A --- script/bump-extension-cli | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 script/bump-extension-cli diff --git a/script/bump-extension-cli b/script/bump-extension-cli new file mode 100755 index 0000000000..ca6a24a8d9 --- /dev/null +++ b/script/bump-extension-cli @@ -0,0 +1,7 @@ +#!/bin/bash + +set -e + +git pull --ff-only origin main +git tag -f extension-cli +git push -f origin extension-cli