-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d79a658
commit eaef286
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ esac | |
|
||
# Check if the version in the README.md file is different from the latest version | ||
current_version=$(grep -o "docker.io/camunda/keycloak:[0-9]\+" README.md | head -n 1 | cut -d ":" -f 2) | ||
if [ "${current_version}" != "${latest_version}" ]; then | ||
if [[ "${current_version}" != "${latest_version}" ]]; then | ||
sed_universal -E "[email protected]/camunda/keycloak:[0-9][email protected]/camunda/keycloak:${latest_version}@g" README.md | ||
|
||
echo "The docker image version in the README.md has been updated from docker.io/camunda/keycloak:${current_version} to docker.io/camunda/keycloak:${latest_version}" >&2 | ||
|