-
Notifications
You must be signed in to change notification settings - Fork 29
101 lines (79 loc) · 3.22 KB
/
pre_release.yml
File metadata and controls
101 lines (79 loc) · 3.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: Pre-release - Bump version & draft release
on:
workflow_dispatch:
inputs:
target_branch:
description: >
"This workflow will create a commit to bump version on a branch.
Enter the target branch: main for SaaS, or release/XX.Y for an LTS version: "
required: true
type: string
default: "main"
permissions:
contents: write
jobs:
pre_release:
runs-on: ubuntu-latest
name: Bump version & draft release
steps:
- name: Checkout target branch
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.target_branch }}
token: ${{ secrets.RELEASE_BOT_PAT }} # <<< service PAT
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12 || 3.14
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install bump2version
- name: Set git identity
run: |
git config user.name "kili-release-bot"
git config user.email "kili-release-bot@users.noreply.github.com"
- name: Add the bump commit
env:
GH_TOKEN: ${{ secrets.RELEASE_BOT_PAT }}
shell: bash
run: |
set -euo pipefail
git fetch --quiet
curl https://raw.githubusercontent.com/kili-technology/kili-python-sdk/main/.github/scripts/utils.sh --output utils.sh
source ./utils.sh # exposes bump_version
# create bump commit (major / minor / patch)
new_version=$(bump_version commit patch)
echo "New version (bump_version): $new_version"
# Push back to the same branch explicitly
git push origin HEAD:${{ github.event.inputs.target_branch }}
- name: Create tag and draft release
env:
GH_TOKEN: ${{ secrets.RELEASE_BOT_PAT }} # used by gh CLI
shell: bash
run: |
set -euo pipefail
curl https://raw.githubusercontent.com/kili-technology/kili-python-sdk/main/.github/scripts/utils.sh --output utils.sh
source ./utils.sh
# Get release version from pyproject.toml (now bumped)
release_version=$(get_sdk_version_from_pyproject_toml)
echo "Release version: $release_version"
# Get previous release tag (closest inferior version)
latest_release=$(get_previous_release_tag "$release_version")
echo "Previous release tag: $latest_release"
git fetch --tags --quiet
# Create annotated tag on this commit & push it
git tag -a "$release_version" -m "Release $release_version"
git push origin "$release_version"
# Create draft release
link_to_draft=$(gh release create "$release_version" \
--draft \
--title "Release $release_version" \
--generate-notes \
--notes-start-tag "$latest_release")
# Extract URL from gh output
link_to_draft=$(echo "$link_to_draft" | grep -o 'https://[^ ]*')
echo "Link to draft release: $link_to_draft"
echo "LINK_TO_DRAFT=$link_to_draft" >> "$GITHUB_ENV"
echo "RELEASE_VERSION=$release_version" >> "$GITHUB_ENV"