Skip to content

Create Release

Create Release #19

Workflow file for this run

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: Create release branch
run: |
git checkout -b release/next
git push -u origin release/next
- name: Create bump and changelog
if: ${{ inputs.releaseType == 'default' }}
run: cz bump --files-only --yes --changelog
- name: Create bump and changelog
if: ${{ inputs.releaseType != 'default' }}
run: 'cz bump --files-only --yes --changelog --prerelease ${{ inputs.releaseType }}'
- name: Git Status
run: git status
# - name: Commit and push Changes
# run: |
# git config user.name "Github Actions [Bot]"
# git commit -a -m "Bumped version and updated CHANGELOG"
# git push -u origin release/next
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.RELEASE_ACCESS_TOKEN }}
base: nq/release_flow_tests
branch: release/next
delete-branch: true
title: Release
body: ''