Skip to content

Commit

Permalink
Change docker image name inside publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
Semen Medvedev committed Aug 22, 2024
1 parent 5b97f40 commit f67ffd5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/steps/publish-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ else
fi

docker login -u=$user -p=$password
docker push neonlabsorg/launch-script:$tag
docker push neonlabsorg/neon-governance:$tag

if [[ $TAG == "stable" ]] || [[ $TAG == ci-* ]] || [[ $TAG == v*.*.* ]]; then
docker tag neonlabsorg/launch-script:$tag neonlabsorg/launch-script:${TAG}
docker push neonlabsorg/launch-script:${TAG}
docker tag neonlabsorg/neon-governance:$tag neonlabsorg/neon-governance:${TAG}
docker push neonlabsorg/neon-governance:${TAG}
fi

exit 0

0 comments on commit f67ffd5

Please sign in to comment.