75 lines
2.4 KiB
YAML
75 lines
2.4 KiB
YAML
name: Bump version
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
bump:
|
|
description: 'Bump type'
|
|
required: true
|
|
default: 'patch'
|
|
type: choice
|
|
options:
|
|
- 'major'
|
|
- 'minor'
|
|
- 'patch'
|
|
github_release:
|
|
description: 'Create Gitea Release'
|
|
default: true
|
|
type: boolean
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the code
|
|
uses: actions/checkout@v4
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v5
|
|
- name: Set up Python
|
|
run: uv python install
|
|
with:
|
|
python-version-file: "pyproject.toml"
|
|
|
|
- name: Install the project
|
|
run: uv sync --locked --all-extras --dev
|
|
- name: Set Git identity
|
|
run: |
|
|
git config user.name "Gitea CI"
|
|
git config user.email "ci@git.theprivateserver.de"
|
|
- name: Bump version
|
|
id: bump
|
|
run: |
|
|
uv tool install bump-my-version
|
|
echo "OLD_VERSION<<EOF" >> $GITHUB_ENV
|
|
echo "$(uv tool run bump-my-version show current_version)" >> $GITHUB_ENV
|
|
echo "EOF" >> $GITHUB_ENV
|
|
uv tool run bump-my-version bump ${{ github.event.inputs.bump }}
|
|
# echo the version to github env, the version is shown by using uv tool run bump-my-version show current_version
|
|
echo "VERSION<<EOF" >> $GITHUB_ENV
|
|
echo "$(uv tool run bump-my-version show current_version)" >> $GITHUB_ENV
|
|
echo "EOF" >> $GITHUB_ENV
|
|
- name: Check version
|
|
run: echo old ${{ env.OLD_VERSION }} new ${{ env.VERSION }}
|
|
- name: conventional Changelog Action
|
|
id: changelog
|
|
uses: TriPSs/conventional-changelog-action@v3.7.1
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: echo changelog data
|
|
run: |
|
|
echo "${{ steps.changelog.outputs.clean_changelog }}"
|
|
echo "§{ steps.changelog.outputs.tag }}"
|
|
- name: Create release
|
|
id: create_release
|
|
if: ${{ github.event.inputs.github_release == 'true' }}
|
|
uses: softprops/action-gh-release@master
|
|
with:
|
|
tag_name: ${{ env.VERSION }}
|
|
release_name: Release ${{ env.VERSION }}
|
|
body: ${{ steps.changelog.outputs.clean_changelog }}
|
|
draft: false
|
|
prerelease: false
|
|
make_latest: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|