chore(aptos): Release 2.0.1 #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow to create a new tag release when a release branch is merged | |
name: Tag release | |
on: | |
pull_request: | |
types: [ closed ] | |
branches: | |
- release/* | |
jobs: | |
tag-bump: | |
if: | | |
github.event.pull_request.merged == true && | |
((github.event.pull_request.head.ref == 'version-bump') || startsWith(github.event.pull_request.head.ref, 'hotfix/')) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git config | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get version | |
id: get-version | |
run: | | |
RELEASE_BRANCH=${{ github.event.pull_request.base.ref }} | |
TAG_VERSION=$(echo "$RELEASE_BRANCH" | cut -d'/' -f 2) | |
LC_PATH=$(echo "$RELEASE_BRANCH" | awk -F'/' '{split($2, arr, "-"); print arr[1]}') | |
if [[ "${{ startsWith(github.event.pull_request.head.ref, 'version-bump') }}" == "true" ]]; then | |
TAG_VERSION="${TAG_VERSION}.0" | |
fi | |
git tag -a $TAG_VERSION -m "$TAG_VERSION" origin/$RELEASE_BRANCH | |
git push origin $TAG_VERSION --follow-tags | |
echo "path=$PATH" | tee -a "$GITHUB_OUTPUT" | |
echo "tag-version=$TAG_VERSION" | tee -a "$GITHUB_OUTPUT" | |
echo "RELEASE_BRANCH=$RELEASE_BRANCH" | tee -a "$GITHUB_ENV" | |
- name: Get latest release reference | |
id: get-latest-release | |
run: | | |
if [[ "${{ github.event.pull_request.head.ref }}" == "version-bump" ]]; then | |
REGEX=${{ env.PATH }} | |
LATEST_RELEASE=$(gh release list --repo ${{ github.repository }} --limit 100 | grep -Ei "$REGEX" | head -n 1 | awk '{ print $1 }') | |
if [ -z "$LATEST_RELEASE" ]; then | |
LATEST_RELEASE=$(git rev-list --max-parents=0 HEAD) | |
echo "The first commit on branch ${{ env.RELEASE_BRANCH }} is $LATEST_RELEASE" | |
else | |
echo "Found release: $LATEST_RELEASE" | |
fi | |
else | |
LATEST_RELEASE=$${{ steps.get-version.outputs.tag-version }} | |
echo "Found release: $LATEST_RELEASE" | |
fi | |
echo "latest_release=$LATEST_RELEASE" | tee -a "$GITHUB_OUTPUT" | |
env: | |
GH_TOKEN: ${{ github.token }} | |
- name: Build Changelog | |
id: github_release | |
uses: mikepenz/release-changelog-builder-action@v4 | |
with: | |
path: "./${{ steps.get-version.outputs.path }}" | |
fromTag: ${{ steps.get-latest-release.outputs.latest_release }} | |
toTag: ${{ steps.get-version.outputs.tag-version }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
with: | |
body: ${{ steps.github_release.outputs.changelog }} | |
tag: ${{ steps.get-version.outputs.tag-version }} | |
commit: ${{ env.RELEASE_BRANCH }} | |
allowUpdates: true |