Skip to content

Commit 072ce2b

Browse files
committed
fix: ghrc => ghcr in build.yaml
i Signed-off-by: Denis Golovin <[email protected]>
1 parent cf18d63 commit 072ce2b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ jobs:
6868
if: ${{ inputs.registry == 'quay' }}
6969
run: podman login --username ${{ secrets.QUAY_ROBOT_NAME }} --password ${{ secrets.QUAY_ROBOT_TOKEN }} quay.io
7070

71-
- name: Login to ghrc.io
72-
if: ${{ inputs.registry == 'ghrc' }}
71+
- name: Login to ghcr.io
72+
if: ${{ inputs.registry == 'ghcr' }}
7373
run: podman login --username ${{ github.repository_owner }} --password ${{ secrets.GITHUB_TOKEN }} ghcr.io
7474

7575
- name: Build and Push Image (quay.io)
@@ -79,9 +79,9 @@ jobs:
7979
podman build -t quay.io/redhat-developer/podman-desktop-redhat-account-ext:${{ inputs.ext-version }} .
8080
podman push quay.io/redhat-developer/podman-desktop-redhat-account-ext:${{ inputs.ext-version }}
8181
82-
- name: Build and Push Image (ghrc.io)
83-
if: ${{ inputs.registry == 'ghrc' }}
84-
id: build-image-ghrc
82+
- name: Build and Push Image (ghcr.io)
83+
if: ${{ inputs.registry == 'ghcr' }}
84+
id: build-image-ghcr
8585
run: |
86-
podman build -t ghrc.io/redhat-developer/podman-desktop-redhat-account-ext:latest .
87-
podman push ghrc.io/redhat-developer/podman-desktop-redhat-account-ext:latest
86+
podman build -t ghcr.io/redhat-developer/podman-desktop-redhat-account-ext:latest .
87+
podman push ghcr.io/redhat-developer/podman-desktop-redhat-account-ext:latest

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
uses: redhat-developer/podman-desktop-redhat-account-ext/.github/workflows/build.yaml@main
2828
with:
2929
runs-on: ubuntu-latest
30-
registry: 'ghrc'
30+
registry: 'ghcr'

0 commit comments

Comments
 (0)