-
Notifications
You must be signed in to change notification settings - Fork 86
37 lines (34 loc) · 1.32 KB
/
update-version.yml
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
name: Update library version
on:
workflow_dispatch:
inputs:
new_version:
description: 'The new version (vX.Y.Z)'
required: true
env:
NEW_VERSION: ${{ github.event.inputs.new_version }}
NEW_BRANCH: update-version-${{ github.event.inputs.new_version }}
GH_TOKEN: ${{ secrets.MEILI_BOT_GH_PAT }}
jobs:
update-version:
name: Update version in version.py
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update version.py file
run: |
raw_new_version=$(echo $NEW_VERSION | cut -d 'v' -f 2)
new_string="__version__ = \"$raw_new_version\""
sed -i "s/^__version__ = .*/$new_string/" meilisearch/version.py
- name: Commit and push the changes to the ${{ env.NEW_BRANCH }} branch
uses: EndBug/add-and-commit@v9
with:
message: "Update version for the next release (${{ env.NEW_VERSION }}) in version.py"
new_branch: ${{ env.NEW_BRANCH }}
- name: Create the PR pointing to ${{ github.ref_name }}
run: |
gh pr create \
--title "Update version for the next release ($NEW_VERSION)" \
--body '⚠️ This PR is automatically generated. Check the new version is the expected one.' \
--label 'skip-changelog' \
--base $GITHUB_REF_NAME