Skip to content

Commit

Permalink
fix(plugins/docker): try originally push without latest
Browse files Browse the repository at this point in the history
  • Loading branch information
dalisoft committed Jun 24, 2024
1 parent 40e4494 commit 06fecea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ release() {

prepare

docker build -t "${GIT_REPO_NAME-}:${NEXT_BUILD_VERSION-}" . --push
docker build -t "${GIT_REPO_NAME-}:${NEXT_BUILD_VERSION-}" .
docker tag "${GIT_REPO_NAME}:${NEXT_BUILD_VERSION}" "${GIT_REPO_NAME}:latest"
docker push "${GIT_REPO_NAME}:latest"
docker push "${GIT_REPO_NAME}"

log "Docker image published [${NEXT_RELEASE_TAG}]!"

Expand Down

0 comments on commit 06fecea

Please sign in to comment.