AtAuth
7

Configure Feed

Select the types of activity you want to include in your feed.

fix(ci): lowercase Docker image name for GHCR

github.repository_owner preserves case but Docker tags must be
lowercase. Use tr to normalize the image name.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

Bryan Brooks (Mar 9, 2026, 11:53 AM -0500) bfa3fd58 bac78426

+4 -3
+4 -3
.github/workflows/release.yml
··· 7 7 8 8 env: 9 9 REGISTRY: ghcr.io 10 - IMAGE_NAME: ${{ github.repository_owner }}/atauth-gateway 11 10 12 11 permissions: 13 12 contents: read ··· 42 41 run: | 43 42 VERSION=${GITHUB_REF_NAME#v} 44 43 SHORT_SHA=$(echo "$GITHUB_SHA" | cut -c1-7) 44 + IMAGE_NAME=$(echo "${{ github.repository_owner }}/atauth-gateway" | tr '[:upper:]' '[:lower:]') 45 45 echo "version=$VERSION" >> "$GITHUB_OUTPUT" 46 46 echo "short_sha=$SHORT_SHA" >> "$GITHUB_OUTPUT" 47 + echo "image_name=$IMAGE_NAME" >> "$GITHUB_OUTPUT" 47 48 48 49 - name: Log in to GHCR 49 50 uses: docker/login-action@v3 ··· 64 65 build-args: | 65 66 BUILD_COMMIT=${{ steps.meta.outputs.short_sha }} 66 67 tags: | 67 - ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.meta.outputs.version }} 68 - ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest 68 + ${{ env.REGISTRY }}/${{ steps.meta.outputs.image_name }}:${{ steps.meta.outputs.version }} 69 + ${{ env.REGISTRY }}/${{ steps.meta.outputs.image_name }}:latest 69 70 cache-from: type=gha 70 71 cache-to: type=gha,mode=max