From 33b9aca090299e0ea569eb9e2bad01f00236ff53 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Mon, 15 Apr 2024 20:31:12 -0600 Subject: [PATCH] Add a bump patch version workflow (#10588) I'd like to make it less clunky to release a new patch version of preview/stable. Release Notes: - N/A --- .github/workflows/bump_patch_version.yml | 48 ++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/bump_patch_version.yml diff --git a/.github/workflows/bump_patch_version.yml b/.github/workflows/bump_patch_version.yml new file mode 100644 index 0000000000000000000000000000000000000000..3b54f0054cb218d153092042260c4248eb0dc691 --- /dev/null +++ b/.github/workflows/bump_patch_version.yml @@ -0,0 +1,48 @@ +name: Bump Patch Version + +on: + workflow_dispatch: + inputs: + branch: + description: "Branch name to run on" + required: true + +concurrency: + # Allow only one workflow per any non-`main` branch. + group: ${{ github.workflow }}-${{ github.event.input.branch }} + cancel-in-progress: true + +jobs: + bump_patch_version: + runs-on: + - self-hosted + - test + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + ref: ${{ github.event.inputs.branch }} + + - name: Bump Patch Version + run: | + set -eu + channel=$(cat crates/zed/RELEASE_CHANNEL) + + tag_suffix="" + case $channel in + stable) + ;; + preview) + tag_suffix="-pre" + ;; + *) + echo "this must be run on either of stable|preview release branches" >&2 + exit 1 + ;; + esac + which cargo-set-version > /dev/null || cargo install cargo-edit + output=$(cargo set-version -p zed --bump patch 2>&1 | sed 's/.* //') + cargo check --quiet + git commit -am "Bump to $output for $GITHUB_ACTOR" + git tag v${output}${suffix} + git push origin HEAD v${output}${suffix}