From fa96a14f1520715908e756a3384618e5fa8f1fb5 Mon Sep 17 00:00:00 2001 From: Scott Howe Date: Fri, 18 Oct 2024 16:17:13 -0600 Subject: [PATCH] ci: force repo name to lower case (#46) --- .github/workflows/release-and-publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-and-publish.yml b/.github/workflows/release-and-publish.yml index 977f284..6fddb95 100644 --- a/.github/workflows/release-and-publish.yml +++ b/.github/workflows/release-and-publish.yml @@ -8,7 +8,6 @@ env: NEXT_VERSION: PUBLISH_IMAGE: IMAGE_REGISTRY: ghcr.io - IMAGE_NAME: ghcr.io/${{ github.repository }} jobs: release-and-publish: @@ -18,6 +17,9 @@ jobs: runs-on: ubuntu-22.04 steps: + - name: Set up environment variables + run: echo "IMAGE_NAME=ghcr.io/${{ github.repository }}" | tr '[:upper:]' '[:lower:]' >> $GITHUB_ENV + - name: Checkout uses: actions/checkout@v4