Skip to content

Commit

Permalink
Merge pull request #44 from FireTail-io/feat/fire-1839/publish-to-ghcr
Browse files Browse the repository at this point in the history
ci: Provide argument to awk
  • Loading branch information
rileyfiretail authored Oct 19, 2023
2 parents 7411a55 + b8a040c commit 0414ad9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Set Image Tags From Release Output
run: |
NAMESPACE="$(awk '{print(tolower())}' <<<${{ github.repository_owner }})"
NAMESPACE="$(awk '{print(tolower($0))}' <<<${{ github.repository_owner }})"
cat <<HEREDOC >>${GITHUB_ENV}
TAG_BASE=${{ env.REGISTRY }}/${NAMESPACE}/${{ env.IMAGE_NAME }}
PRERELEASE_IMAGE_TAG=${{ steps.draft_release.outputs.tag_name }}-prerelease
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

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

0 comments on commit 0414ad9

Please sign in to comment.