development: * check with version #37
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: | |
pull_request: | |
branches: | |
- production | |
types: | |
- closed | |
workflow_dispatch: | |
inputs: | |
increment_type: | |
type: choice | |
description: Version increment type | |
default: patch | |
options: | |
- patch | |
- minor | |
- major | |
version: | |
type: string | |
description: Specific release version (e.g., 1.2.3) | |
jobs: | |
create_release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Extract release version from Pull Request title | |
id: extract-version-from-pr-title | |
shell: bash | |
if: ${{ !github.event.inputs.version && github.event.pull_request.merged }} | |
run: | | |
pr_title="${{ github.event.pull_request.title }}" | |
if echo "$pr_title" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+"; then | |
version="${BASH_REMATCH}" | |
echo "version=$version" >> $GITHUB_OUTPUT | |
fi | |
echo "SELECTED_COLOR=$version" >> "$GITHUB_OUTPUT" | |
- name: Determine incremented release version | |
id: determine-incremented-release-version | |
if: ${{ !github.event.inputs.version && !steps.extract-version-from-pr-title.outputs.version }} | |
uses: reecetech/version-increment@2023.9.3 | |
with: | |
scheme: semver | |
increment: ${{ github.event.inputs.increment_type }} | |
- name: Create release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ github.event.inputs.version || | |
steps.extract-version-from-pr-title.outputs.version || | |
steps.determine-incremented-release-version.outputs.version }} | |
generate_release_notes: true | |
- name: Get color | |
run: echo "The selected color is ${{ steps.extract-version-from-pr-title.outputs.SELECTED_COLOR }}" |