Updates for release 1.22.0 (#486) #33
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
name: release | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- '*.*.*' | |
permissions: | |
contents: write | |
jobs: | |
release: | |
name: Create a github branch | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Create actual release | |
- name: Get the branch version | |
id: get_branch | |
run: | | |
TNAME=${GITHUB_REF/refs\/tags\//} | |
if ${{github.event_name == 'workflow_dispatch'}}; then | |
TNAME=$(git describe --abbrev=0 --tags) | |
fi | |
echo ::set-output name=BRANCH::$(echo ${TNAME} | cut -d '.' -f1-2 | tr -d 'v') | |
echo ::set-output name=TAGNAME::$(echo ${TNAME} | cut -d '.' -f1-3) | |
- name: Create GitHub release | |
uses: ncipollo/release-action@v1 | |
with: | |
bodyFile: notes/${{ steps.get_branch.outputs.TAGNAME }}.md | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ steps.get_branch.outputs.TAGNAME }} | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.19 | |
id: go | |
- name: Bump patch version | |
run: make patch | |
- name: Create new branch and commit changes to the minor branch | |
uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: user_info | |
message: 'Update patch version' | |
new_branch: ${{ steps.get_branch.outputs.BRANCH }} | |
author_name: elasticcloudclients | |
author_email: [email protected] |