mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-14 17:08:56 +01:00
25 lines
638 B
Bash
25 lines
638 B
Bash
#!/bin/bash
|
|
|
|
# check_tag $current_tag $file_tag $file_name
|
|
function check_tag {
|
|
if [[ "$1" != "$2" ]]; then
|
|
echo "Error: the current tag does not match the version in Cargo.toml: found $2 - expected $1"
|
|
ret=1
|
|
fi
|
|
}
|
|
|
|
ret=0
|
|
current_tag=${GITHUB_REF#'refs/tags/v'}
|
|
|
|
file_tag="$(grep '^version = ' Cargo.toml | cut -d '=' -f 2 | tr -d '"' | tr -d ' ')"
|
|
check_tag $current_tag $file_tag
|
|
|
|
lock_file='Cargo.lock'
|
|
lock_tag=$(grep -A 1 'name = "meilisearch-auth"' $lock_file | grep version | cut -d '=' -f 2 | tr -d '"' | tr -d ' ')
|
|
check_tag $current_tag $lock_tag $lock_file
|
|
|
|
if [[ "$ret" -eq 0 ]] ; then
|
|
echo 'OK'
|
|
fi
|
|
exit $ret
|