Skip to content

Commit

Permalink
EVEREST-107 update IMAGE_TAG_OWNER (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
oksana-grishchenko authored Aug 14, 2024
1 parent 264f028 commit 09cbec2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,15 @@ jobs:
exit 1
fi
# update IMAGE_TAG_OWNER in the Makefile to point to a correct org
if [[ $IS_RC == 1 ]]; then
# if the RC build is being run over a Release build, there will be the "percona" org mentioned in the quickstart file,
# so we should replace the org
sed -i "s/IMAGE_TAG_OWNER ?= docker.io\/percona\$/IMAGE_TAG_OWNER ?= docker.io\/perconalab/g" Makefile
else
sed -i "s/IMAGE_TAG_OWNER ?= docker.io\/perconalab/IMAGE_TAG_OWNER ?= docker.io\/percona/g" Makefile
fi
make init
make release
Expand Down

0 comments on commit 09cbec2

Please sign in to comment.