1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-31 05:04:23 +03:00

Create an annotated tag to give release.yml chance to run

This commit is contained in:
Vladimir Mihailenco
2021-08-12 15:00:12 +03:00
parent 74f9a7338f
commit 4ed306de42
3 changed files with 5 additions and 5 deletions

View File

@ -4,6 +4,6 @@ PACKAGE_DIRS=$(find . -mindepth 2 -type f -name 'go.mod' -exec dirname {} \; \
for dir in $PACKAGE_DIRS
do
printf "${dir}: go get -u ./... && go mod tidy\n"
(cd ./${dir} && go get -u ./... && go mod tidy)
printf "${dir}: go get -d && go mod tidy\n"
(cd ./${dir} && go get -d && go mod tidy)
done