Skip to content

Commit

Permalink
Move registry param location
Browse files Browse the repository at this point in the history
  • Loading branch information
greboid authored Dec 20, 2023
1 parent ee2a75c commit 4b83dc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-containers.yml.gotpl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
cache: false
- name: Login to private registry
run: |
/usr/bin/podman login ${{ secrets.REGISTRY }} -u ${{ secrets.REGISTRY_USER }} -p ${{ secrets.REGISTRY_PASS }} --verbose
/usr/bin/podman login -u ${{ secrets.REGISTRY_USER }} -p ${{ secrets.REGISTRY_PASS }} ${{ secrets.REGISTRY }} --verbose
- name: Configure Git
uses: snow-actions/[email protected]
with:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
if: steps.check_mirror_exists.outputs.status == 'success'
{%- raw -%}
run: |
/usr/bin/podman login ghcr.io -u ${{ github.repository_owner }} -p ${{ secrets.CONTEMPT_TOKEN }} --verbose
/usr/bin/podman login -u ${{ github.repository_owner }} -p ${{ secrets.CONTEMPT_TOKEN }} ghcr.io --verbose
- name: Retag image to mirror
if: steps.check_mirror_exists.outputs.status == 'success'
env:
Expand Down

0 comments on commit 4b83dc4

Please sign in to comment.