We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce3c919 commit 1ff716bCopy full SHA for 1ff716b
.github/workflows/release-latest.yml
@@ -33,7 +33,8 @@ jobs:
33
run: |
34
sed -e '/^[[:space:]]*$/d' -e '/[#@]/d' -e 's/\"//g' -e 's/\(^[^=]*\)=\(.*\)/\1="\2"/' template.env > env.hcl
35
echo "COMMIT_HASH=`echo '${{ github.sha }}' | cut -c 1-7`" >> "$GITHUB_ENV"
36
- echo "NAMESPACE=ghcr.io/misp/misp-docker" >> "$GITHUB_ENV"
+ OWNER=$(echo "$GITHUB_REPOSITORY_OWNER" | tr '[:upper:]' '[:lower:]')
37
+ echo "NAMESPACE=ghcr.io/${OWNER}/misp-docker" >> "$GITHUB_ENV"
38
39
- name: Log in to the container registry
40
uses: docker/login-action@v3
0 commit comments