Skip to content

Bump version.

Bump version. #21

Workflow file for this run

name: Release
on:
push:
tags:
- '**'
# remove comments if a recent tag push should
# terminate the older running action
#concurrency:
# group: ${{ github.ref }}
# cancel-in-progress: true
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get the version
id: get_version
run: echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
- name: Generate changelog
id: changelog
uses: metcalfc/[email protected]
with:
myToken: ${{ secrets.ACTIONS_GITHUB_TOKEN }}
- name: GitHub Release
uses: softprops/action-gh-release@v1
with:
body: ${{ steps.changelog.outputs.changelog }}
token: ${{ secrets.ACTIONS_GITHUB_TOKEN }}