AtAuth
7

Configure Feed

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

Fix Docker workflow: force lowercase image name for GHCR

Bryan Brooks (Dec 11, 2025, 10:34 AM -0600) 1e6ad832 0bb37de8

+6 -3
+6 -3
.github/workflows/docker.yml
··· 9 9 10 10 env: 11 11 REGISTRY: ghcr.io 12 - IMAGE_NAME: ${{ github.repository }}-gateway 13 12 14 13 jobs: 15 14 build: ··· 21 20 steps: 22 21 - name: Checkout repository 23 22 uses: actions/checkout@v4 23 + 24 + - name: Set image name (lowercase) 25 + id: image 26 + run: echo "name=${GITHUB_REPOSITORY_OWNER,,}/atauth-gateway" >> $GITHUB_OUTPUT 24 27 25 28 - name: Set up Docker Buildx 26 29 uses: docker/setup-buildx-action@v3 ··· 37 40 id: meta 38 41 uses: docker/metadata-action@v5 39 42 with: 40 - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} 43 + images: ${{ env.REGISTRY }}/${{ steps.image.outputs.name }} 41 44 tags: | 42 45 type=ref,event=branch 43 46 type=ref,event=pr ··· 62 65 if: github.event_name != 'pull_request' 63 66 uses: anchore/sbom-action@v0 64 67 with: 65 - image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest 68 + image: ${{ env.REGISTRY }}/${{ steps.image.outputs.name }}:latest