Skip to content

Commit

Permalink
Add prepare patch release workflow (open-telemetry#5411)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask authored and RashmiRam committed May 23, 2022
1 parent 0ed3a2b commit 4ed8d51
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 4 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/prepare-patch-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Prepare Patch Release
on:
workflow_dispatch:

jobs:
prepare-patch-release:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
ref: ${{ github.ref_name }}

- name: Set versions
id: set-versions
run: |
v=$(grep -Eo "[0-9]+.[0-9]+.[0-9]+" version.gradle.kts | head -1)
if [[ $v =~ ([0-9]+.[0-9]+).([0-9]+) ]]; then
major_minor="${BASH_REMATCH[1]}"
patch="${BASH_REMATCH[2]}"
else
echo "unexpected version: $v"
exit 1
fi
echo "::set-output name=release-version::$major_minor.$((patch + 1))"
echo "::set-output name=prior-version::$v"
- name: Bump version
run: |
.github/scripts/update-versions.sh "${{ steps.set-versions.outputs.prior-version }}" "${{ steps.set-versions.outputs.prior-version }}-alpha" "${{ steps.set-versions.outputs.release-version }}" "${{ steps.set-versions.outputs.release-version }}-alpha"
- name: Bump download link version
run: |
sed -Ei "s,https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${{ steps.set-versions.outputs.prior-version }}/,https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v${{ steps.set-versions.outputs.release-version }}/," README.md
- name: Setup git name
run: |
git config user.name opentelemetry-java-bot
git config user.email [email protected]
- name: Create pull request
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
msg="Prepare patch release ${{ steps.set-versions.outputs.release-version }}"
git add -u
git commit -m "$msg"
git push origin HEAD:prepare-patch-release-${{ steps.set-versions.outputs.release-version }}
gh pr create --title "$msg" \
--body "$msg" \
--head prepare-patch-release-${{ steps.set-versions.outputs.release-version }} \
--base ${{ github.ref_name }}
9 changes: 5 additions & 4 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,11 @@ Before making the release:

* Merge PR(s) containing the desired patches to the release branch
* Merge a PR to the release branch updating the `CHANGELOG.md`
* Merge a PR to the release branch updating the version in these files:
* version.gradle.kts
* examples/distro/build.gradle
* examples/extension/build.gradle
* Run the [Prepare Patch Release workflow](https://github.com/open-telemetry/opentelemetry-java-instrumentation/actions/workflows/prepare-patch-release.yml).
* Press the "Run workflow" button, then select the release branch from the dropdown list,
e.g. `v1.9.x`, and click the "Run workflow" button below that.
* Review and merge the PR that it creates
* Delete the branch from the PR since it is created in the main repo

Open the [Release workflow](https://github.com/open-telemetry/opentelemetry-java-instrumentation/actions/workflows/release.yml).

Expand Down

0 comments on commit 4ed8d51

Please sign in to comment.