mirror of
https://github.com/RetroDECK/retrodeck-builder.git
synced 2024-11-21 21:55:38 +00:00
Fixing registry names
This commit is contained in:
parent
859ec28a8a
commit
59612819a6
6
.github/workflows/docker.yml
vendored
6
.github/workflows/docker.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue