Skip to content

Commit

Permalink
Really fix lowercase repository name
Browse files Browse the repository at this point in the history
  • Loading branch information
uraimo authored Sep 8, 2020
1 parent 1af09b2 commit 8ba35c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/run-on-arch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ declare -a DOCKER_RUN_ARGS=${@:3:${#@}}

# Defaults
ACTION_DIR="$(cd "$(dirname "$0")"/.. >/dev/null 2>&1 ; pwd -P)"
LOWERCASE_REPOSITORY=$(printf "%s" "$GITHUB_REPOSITORY" | tr '[:lower:]' '[:upper:]')
LOWERCASE_REPOSITORY=$(printf "%s" "$GITHUB_REPOSITORY" | tr '[:upper:]' '[:lower:]')
PACKAGE_REGISTRY="docker.pkg.github.com/${LOWERCASE_REPOSITORY}/${CONTAINER_NAME}"
DEBIAN_FRONTEND=noninteractive

Expand Down

0 comments on commit 8ba35c5

Please sign in to comment.