Skip to content

Commit

Permalink
Merge pull request #120 from inCaller/repository_lowercase
Browse files Browse the repository at this point in the history
Lowercase image_name
  • Loading branch information
hryamzik authored Dec 25, 2024
2 parents 7e823d5 + 5ea76c0 commit b7f7c0d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ jobs:
runs-on: ubuntu-latest
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
permissions:
contents: read
packages: write
Expand All @@ -64,6 +63,10 @@ jobs:
- name: Check out the codebase.
uses: actions/checkout@main

- name: Set IMAGE_NAME env as github_repository lower-case
run: |
echo IMAGE_NAME=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
- name: Log in to the Container registry
uses: docker/login-action@master
with:
Expand Down

0 comments on commit b7f7c0d

Please sign in to comment.