Skip to content

Commit

Permalink
fix more syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Jul 12, 2024
1 parent 32e9281 commit 8f88345
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions linux/publish-docker-images
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ DOCKER_IMAGE_VERSION=$(cat "$ROOTDIR/shared/definitions/docker_image_version")
source "$ROOTDIR/shared/lib/library.sh"

if [ "${GITHUB_ACTIONS}" = "true" ]; then
REGISTRY = "ghcr.io"
REGISTRY="ghcr.io"
else
REGISTRY = "docker.io"
REGISTRY="docker.io"
fi
BUILDBOX_NAME="${REGISTRY}/phusion/passenger_binary_build_automation"

Expand Down
4 changes: 2 additions & 2 deletions linux/setup-docker-images
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ DOCKER_IMAGE_VERSION=$(cat "$ROOTDIR/shared/definitions/docker_image_version")
source "$ROOTDIR/shared/lib/library.sh"

if [ "${GITHUB_ACTIONS}" = "true" ]; then
REGISTRY = "ghcr.io"
REGISTRY="ghcr.io"
else
REGISTRY = "docker.io"
REGISTRY="docker.io"
fi
BUILDBOX_NAME="${REGISTRY}/phusion/passenger_binary_build_automation"

Expand Down

0 comments on commit 8f88345

Please sign in to comment.