Skip to content

Release start

Release start #28

Workflow file for this run

# This is a basic workflow that is manually triggered
name: Release start
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
release_version_name:
description: 'New release version name'
required: true
type: string
development_version_name:
description: 'Development version name'
required: true
type: string
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
create_branch:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12.1
# override vName with new version
- name: Create release branch
run: git checkout -b release/${{ inputs.release_version_name }}
- name: Run Python script to update release branch version
run: python scripts/updateVersionName.py ${{ inputs.release_version_name }}
- name: Commit and Push Changes
uses: flex-development/[email protected]
with:
message: 'Update version to ${{ inputs.release_version_name }}'
ref: 'release/${{ inputs.release_version_name }}'
update_version:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12.1
- name: Create release branch
run: git checkout -b update_version_to${{ inputs.development_version_name }}
- name: Run Python script to update base branch version
run: python scripts/updateVersionName.py ${{ inputs.development_version_name }}
- name: Commit and Push Changes
uses: flex-development/[email protected]
with:
message: 'Update version to ${{ inputs.development_version_name }}'
ref: 'update_version_to${{ inputs.development_version_name }}'
- name: create pull request
run: gh pr create -B develop -H update_version_to${{ inputs.development_version_name }} --title 'Merge update_version_to${{ inputs.development_version_name }} into develop' --body 'Created by Github action'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}