Fixing registry names

This commit is contained in:
XargonWan 2024-11-05 14:32:53 +09:00
parent 859ec28a8a
commit 59612819a6

View file

@ -7,7 +7,7 @@ on:
- ".github/workflows/docker.yml" # Also triggers when the workflow itself is updated - ".github/workflows/docker.yml" # Also triggers when the workflow itself is updated
env: env:
IMAGE_NAME: ghcr.io/retrodeck-builder:${{ github.sha }} # Image name with SHA tag IMAGE_NAME: ghcr.io/retrodeck/retrodeck-builder:${{ github.sha }} # Image name with SHA tag
jobs: jobs:
build-and-push: build-and-push:
@ -35,5 +35,5 @@ jobs:
- name: Tag as Latest - name: Tag as Latest
if: github.ref == 'refs/heads/main' # Only tag as 'latest' on the main branch if: github.ref == 'refs/heads/main' # Only tag as 'latest' on the main branch
run: | run: |
docker tag $IMAGE_NAME ghcr.io/retrodeck-builder:latest docker tag $IMAGE_NAME ghcr.io/retrodeck/retrodeck-builder:latest
docker push ghcr.io/retrodeck-builder:latest docker push ghcr.io/retrodeck/retrodeck-builder:latest