fix(ci): use lowercase docker repo name

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2024-04-30 23:32:28 +02:00
parent 20c99fa535
commit 9b4050696e
No known key found for this signature in database
GPG key ID: E13DFD4B47127951

View file

@ -51,13 +51,18 @@ jobs:
env: env:
REGISTRY: ghcr.io REGISTRY: ghcr.io
USERNAME: ${{ github.actor }} USERNAME: ${{ github.actor }}
IMAGE_NAME: ${{ github.repository }}
if: github.event_name == 'push' if: github.event_name == 'push'
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Determine image name
run: |
echo "IMAGE_NAME=${REPOSITORY,,}" >> "$GITHUB_ENV"
env:
REPOSITORY: '${{ github.repository }}'
- name: Download images - name: Download images
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
with: with: