Skip to content

Commit

Permalink
fix: missing ghcr.io prefix in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
edeckers committed Mar 28, 2022
1 parent 1dea367 commit aa219f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/release/release-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function cd_to_root_directory () {
function build_and_publish_docker_image () {
cd_to_root_directory

echo "Building and publishing Docker image edeckers/huemon:0.9.0"
docker buildx build . --platform linux/amd64,linux/arm64,linux/arm/v7 -t edeckers/huemon:0.9.0 --push
echo "Built and published Docker image edeckers/huemon:0.9.0"
echo "Building and publishing Docker image ghcr.io/edeckers/huemon:0.9.0"
docker buildx build . --platform linux/amd64,linux/arm64,linux/arm/v7 -t ghcr.io/edeckers/huemon:0.9.0 --push
echo "Built and published Docker image ghcr.io/edeckers/huemon:0.9.0"
}

0 comments on commit aa219f6

Please sign in to comment.