Create Release #3
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: Create Release | |
on: | |
workflow_dispatch: | |
inputs: | |
releaseType: | |
description: 'Release Type' | |
required: true | |
type: choice | |
options: | |
- default | |
- alpha | |
- beta | |
- rc | |
jobs: | |
bump-version: | |
runs-on: ubuntu-latest | |
name: "Bump release version and create changelog" | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.RELEASE_ACCESS_TOKEN }} | |
- name: Install cz | |
run: pip install --user -U Commitizen | |
- name: Record from version | |
run: | | |
echo "FROM_VERSION=$(cz version --project)" >> $GITHUB_ENV | |
- name: Create release branch | |
run: | | |
git checkout -b release/next | |
git push -u origin release/next | |
# Bump version and create CHANGELOG - default release | |
- name: Create bump and changelog | |
if: ${{ inputs.releaseType == 'default' }} | |
run: cz bump --files-only --yes --changelog | |
# Bump version and create CHANGELOG - prereleasee | |
- name: Create bump and changelog | |
if: ${{ inputs.releaseType != 'default' }} | |
run: cz bump --files-only --yes --changelog --prerelease ${{ inputs.releaseType }} | |
- name: Record to version | |
run: | | |
echo "TO_VERSION=$(cz version --project)" >> $GITHUB_ENV | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.RELEASE_ACCESS_TOKEN }} | |
base: master | |
branch: release/next | |
delete-branch: true | |
title: Release ${{ env.TO_VERSION }} | |
body: 'Bumped ${{ env.FROM_VERSION}} -> ${{ env.TO_VERSION }}' |