Skip to content

Prepare Release

Prepare Release #5

name: Prepare Release
on:
workflow_dispatch:
inputs:
bump:
description: 'The type of version bump to perform'
required: true
default: 'patch'
type: choice
options:
- patch
- minor
# Major version is intentionally omitted, as it should be done manually
env:
MAIN_PYTHON_VERSION: 3.11
jobs:
create_prepare_branch:
runs-on: ubuntu-latest
environment: dev_read
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: main
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
- name: Install required dependencies
run: |
python -m pip install --upgrade pip
pip install typer packaging
- name: Bump Patch Version
if: ${{ github.event.inputs.bump == 'patch' }}
run:
python dev.py --patch --verbose
- name: Bump Minor Version
if: ${{ github.event.inputs.bump == 'minor' }}
run:
python dev.py --minor --verbose
- id: version
name: Pick up the new version
# Read the version from the cognite/neat/_version.py file
run: echo "version=$(sed -n 's/^__version__ = "\(.*\)"/\1/p' cognite/neat/_version.py)" >> $GITHUB_ENV
- name: Switch to a new branch
run: |
git switch -c "prepare-${{ env.version }}"
- name: Commit and push changes to new branch
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
git add -A
git commit -m 'Prepare ${{ env.version }}'
git push -u origin "prepare-${{ env.version }}"