mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 10:37:41 +08:00
Merge #3519
3519: Update comments in version bump CI r=irevoire a=curquiza Following https://github.com/meilisearch/meilisearch/pull/3499 Co-authored-by: curquiza <clementine@meilisearch.com>
This commit is contained in:
commit
562c86ea01
12
.github/workflows/update-cargo-toml-version.yml
vendored
12
.github/workflows/update-cargo-toml-version.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Update Meilisearch version in all Cargo.toml files
|
name: Update Meilisearch version in Cargo.toml
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
@ -14,7 +14,7 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update-version-cargo-toml:
|
update-version-cargo-toml:
|
||||||
name: Update version in Cargo.toml files
|
name: Update version in Cargo.toml
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
@ -25,7 +25,7 @@ jobs:
|
|||||||
override: true
|
override: true
|
||||||
- name: Install sd
|
- name: Install sd
|
||||||
run: cargo install sd
|
run: cargo install sd
|
||||||
- name: Update Cargo.toml files
|
- name: Update Cargo.toml file
|
||||||
run: |
|
run: |
|
||||||
raw_new_version=$(echo $NEW_VERSION | cut -d 'v' -f 2)
|
raw_new_version=$(echo $NEW_VERSION | cut -d 'v' -f 2)
|
||||||
new_string="version = \"$raw_new_version\""
|
new_string="version = \"$raw_new_version\""
|
||||||
@ -35,13 +35,13 @@ jobs:
|
|||||||
- name: Commit and push the changes to the ${{ env.NEW_BRANCH }} branch
|
- name: Commit and push the changes to the ${{ env.NEW_BRANCH }} branch
|
||||||
uses: EndBug/add-and-commit@v9
|
uses: EndBug/add-and-commit@v9
|
||||||
with:
|
with:
|
||||||
message: "Update version for the next release (${{ env.NEW_VERSION }}) in Cargo.toml files"
|
message: "Update version for the next release (${{ env.NEW_VERSION }}) in Cargo.toml"
|
||||||
new_branch: ${{ env.NEW_BRANCH }}
|
new_branch: ${{ env.NEW_BRANCH }}
|
||||||
- name: Create the PR pointing to ${{ github.ref_name }}
|
- name: Create the PR pointing to ${{ github.ref_name }}
|
||||||
run: |
|
run: |
|
||||||
gh pr create \
|
gh pr create \
|
||||||
--title "Update version for the next release ($NEW_VERSION) in Cargo.toml files" \
|
--title "Update version for the next release ($NEW_VERSION) in Cargo.toml" \
|
||||||
--body '⚠️ This PR is automatically generated. Check the new version is the expected one before merging.' \
|
--body '⚠️ This PR is automatically generated. Check the new version is the expected one and Cargo.lock has been updated before merging.' \
|
||||||
--label 'skip changelog' \
|
--label 'skip changelog' \
|
||||||
--milestone $NEW_VERSION \
|
--milestone $NEW_VERSION \
|
||||||
--base $GITHUB_REF_NAME
|
--base $GITHUB_REF_NAME
|
||||||
|
Loading…
Reference in New Issue
Block a user