mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-01-19 01:18:31 +08:00
update our CI scripts accordingly
This commit is contained in:
parent
74d1a67a99
commit
ab2adba183
10
.github/scripts/check-release.sh
vendored
10
.github/scripts/check-release.sh
vendored
@ -3,7 +3,7 @@
|
|||||||
# check_tag $current_tag $file_tag $file_name
|
# check_tag $current_tag $file_tag $file_name
|
||||||
function check_tag {
|
function check_tag {
|
||||||
if [[ "$1" != "$2" ]]; then
|
if [[ "$1" != "$2" ]]; then
|
||||||
echo "Error: the current tag does not match the version in $3: found $2 - expected $1"
|
echo "Error: the current tag does not match the version in Cargo.toml: found $2 - expected $1"
|
||||||
ret=1
|
ret=1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -11,12 +11,8 @@ function check_tag {
|
|||||||
ret=0
|
ret=0
|
||||||
current_tag=${GITHUB_REF#'refs/tags/v'}
|
current_tag=${GITHUB_REF#'refs/tags/v'}
|
||||||
|
|
||||||
toml_files='*/Cargo.toml'
|
file_tag="$(grep '^version = ' Cargo.toml | cut -d '=' -f 2 | tr -d '"' | tr -d ' ')"
|
||||||
for toml_file in $toml_files;
|
check_tag $current_tag $file_tag
|
||||||
do
|
|
||||||
file_tag="$(grep '^version = ' $toml_file | cut -d '=' -f 2 | tr -d '"' | tr -d ' ')"
|
|
||||||
check_tag $current_tag $file_tag $toml_file
|
|
||||||
done
|
|
||||||
|
|
||||||
lock_file='Cargo.lock'
|
lock_file='Cargo.lock'
|
||||||
lock_tag=$(grep -A 1 'name = "meilisearch-auth"' $lock_file | grep version | cut -d '=' -f 2 | tr -d '"' | tr -d ' ')
|
lock_tag=$(grep -A 1 'name = "meilisearch-auth"' $lock_file | grep version | cut -d '=' -f 2 | tr -d '"' | tr -d ' ')
|
||||||
|
@ -29,7 +29,7 @@ jobs:
|
|||||||
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\""
|
||||||
sd '^version = "\d+.\d+.\w+"$' "$new_string" */Cargo.toml
|
sd '^version = "\d+.\d+.\w+"$' "$new_string" Cargo.toml
|
||||||
- name: Build Meilisearch to update Cargo.lock
|
- name: Build Meilisearch to update Cargo.lock
|
||||||
run: cargo build
|
run: cargo build
|
||||||
- name: Commit and push the changes to the ${{ env.NEW_BRANCH }} branch
|
- name: Commit and push the changes to the ${{ env.NEW_BRANCH }} branch
|
||||||
|
Loading…
Reference in New Issue
Block a user