diff --git a/scripts/release.sh b/scripts/release.sh index 1fe5658d73..099d63f218 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -18,6 +18,7 @@ readonly DRY_RUN="${DRY_RUN:-true}" readonly CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" readonly ROOT_DIR="$(dirname "$CURRENT_DIR")" readonly MKDOCS_FILE="${ROOT_DIR}/mkdocs.yml" +readonly SONARCLOUD_FILE="${ROOT_DIR}/sonar-project.properties" readonly VERSION_FILE="${ROOT_DIR}/internal/version.go" readonly REPOSITORY="github.com/testcontainers/testcontainers-go" @@ -120,6 +121,7 @@ function gitCommitVersion() { gitFn add "${VERSION_FILE}" gitFn add "${MKDOCS_FILE}" + gitFn add "${SONARCLOUD_FILE}" gitFn add "docs/**/*.md" gitFn add "examples/**/go.*" gitFn add "modules/**/go.*"