We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82dee30 commit c98a539Copy full SHA for c98a539
.github/workflows/publish-release.yml
@@ -48,7 +48,7 @@ jobs:
48
# The GITHUB_REF tag comes in the format 'refs/tags/xxx'.
49
# So if we split on '/' and take the 3rd value, we can get the release name.
50
run: |
51
- export GPG_TTY=$(tty) && echo ${GPG_KEYS} | gpg --fast-import --batch
+ export GPG_TTY=$(tty) && echo "$GPG_KEYS" | gpg --fast-import --batch
52
NEW_VERSION=$(echo "${GITHUB_REF}" | cut -d "/" -f3)
53
REPO_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $2}')
54
IMAGE=${IMAGE_BASE_NAME}/${REPO_NAME}:${NEW_VERSION}
0 commit comments