Skip to content

Commit 0414ad9

Browse files
Merge pull request #44 from FireTail-io/feat/fire-1839/publish-to-ghcr
ci: Provide argument to awk
2 parents 7411a55 + b8a040c commit 0414ad9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/draft-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Set Image Tags From Release Output
3535
run: |
36-
NAMESPACE="$(awk '{print(tolower())}' <<<${{ github.repository_owner }})"
36+
NAMESPACE="$(awk '{print(tolower($0))}' <<<${{ github.repository_owner }})"
3737
cat <<HEREDOC >>${GITHUB_ENV}
3838
TAG_BASE=${{ env.REGISTRY }}/${NAMESPACE}/${{ env.IMAGE_NAME }}
3939
PRERELEASE_IMAGE_TAG=${{ steps.draft_release.outputs.tag_name }}-prerelease

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- name: Set Image Tags
2424
run: |
25-
NAMESPACE="$(awk '{print(tolower())}' <<<${{ github.repository_owner }})"
25+
NAMESPACE="$(awk '{print(tolower($0))}' <<<${{ github.repository_owner }})"
2626
echo "TAG_BASE=${{ env.REGISTRY }}/${NAMESPACE}/${{ env.IMAGE_NAME }}" >>${GITHUB_ENV}
2727
2828
- name: Log In to the Container Registry

0 commit comments

Comments
 (0)