Skip to content

Commit

Permalink
fix(plugins/docker): use single time push for pushing all tags
Browse files Browse the repository at this point in the history
  • Loading branch information
dalisoft committed Apr 28, 2024
1 parent 3528804 commit 914fba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ release() {

docker buildx use "${DOCKER_BUILDX_NAME-}"
docker buildx inspect --bootstrap
docker buildx build --platform=linux/amd64,linux/arm64 -t "$GIT_REPO_NAME:$NEXT_BUILD_VERSION" . --push
docker buildx build --platform=linux/amd64,linux/arm64 -t "$GIT_REPO_NAME:$NEXT_BUILD_VERSION" .
docker tag "$GIT_REPO_NAME:$NEXT_BUILD_VERSION" "$GIT_REPO_NAME:latest"
docker push "$GIT_REPO_NAME"

Expand Down

0 comments on commit 914fba0

Please sign in to comment.