Skip to content

Commit c4096c1

Browse files
committed
Fix missing fqdn
1 parent d500ff4 commit c4096c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/container-maintenance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ jobs:
3434
- name: Log into ghcr.io
3535
uses: redhat-actions/podman-login@v1
3636
with:
37-
username: ${{ github.repository_owner }}
37+
username: ${{ github.actor }}
3838
password: ${{ github.token }}
3939
registry: ghcr.io/${{ github.repository_owner }}
4040
- name: Get list of tags
4141
run: |
4242
# Fail step if any command fails
4343
set -euo pipefail
44-
skopeo list-tags docker://${{ github.repository }} | jq --raw-output '.Tags[]' > tags
44+
skopeo list-tags docker://ghcr.io/${{ github.repository }} | jq --raw-output '.Tags[]' > tags
4545
- name: Get latest release and rc tags
4646
run: |
4747
STABLE_TAG="$(grep -P '^v\d+\.\d+\.\d+$' tags | sort -rV | head -n1)"

0 commit comments

Comments
 (0)