mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
Add CI to update the Milli version
This commit is contained in:
parent
f7c352a32d
commit
0639b14906
43
.github/workflows/update-cargo-toml-version.yml
vendored
Normal file
43
.github/workflows/update-cargo-toml-version.yml
vendored
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
name: Update Milli version in all Cargo.toml files
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
new_version:
|
||||||
|
description: 'The new version (vX.Y.Z)'
|
||||||
|
required: true
|
||||||
|
|
||||||
|
env:
|
||||||
|
NEW_VERSION: ${{ github.event.inputs.new_version }}
|
||||||
|
GH_TOKEN: ${{ secrets.MEILI_BOT_GH_PAT }}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-version-cargo-toml:
|
||||||
|
name: Update version in cargo.toml files
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: stable
|
||||||
|
override: true
|
||||||
|
- name: Install sd
|
||||||
|
run: cargo install sd
|
||||||
|
- name: Update files
|
||||||
|
run: |
|
||||||
|
echo "$GITHUB_REF_NAME"
|
||||||
|
raw_new_version=$(echo $NEW_VERSION | cut -d 'v' -f 2)
|
||||||
|
new_string="version = \"$raw_new_version\""
|
||||||
|
sd '^version = "\d+.\d+.\w+"$' "$new_string" */Cargo.toml
|
||||||
|
- name: Commits and push the changes to the ${{ github.ref_name }} branch
|
||||||
|
uses: EndBug/add-and-commit@v9
|
||||||
|
with:
|
||||||
|
message: "Update version for the next release (${{ env.NEW_VERSION }}) in Cargo.toml files"
|
||||||
|
new_branch: update-version-${{ env.NEW_VERSION }}
|
||||||
|
- name: Create the PR
|
||||||
|
run: |
|
||||||
|
gh pr create \
|
||||||
|
--title "Update version for the next release ($NEW_VERSION) in Cargo.toml files" \
|
||||||
|
--body '⚠️ This PR is automatically generated. Check the new version is the expected one before merging.' \
|
||||||
|
--label 'skip changelog'
|
Loading…
Reference in New Issue
Block a user