We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d500ff4 commit c4096c1Copy full SHA for c4096c1
.github/workflows/container-maintenance.yml
@@ -34,14 +34,14 @@ jobs:
34
- name: Log into ghcr.io
35
uses: redhat-actions/podman-login@v1
36
with:
37
- username: ${{ github.repository_owner }}
+ username: ${{ github.actor }}
38
password: ${{ github.token }}
39
registry: ghcr.io/${{ github.repository_owner }}
40
- name: Get list of tags
41
run: |
42
# Fail step if any command fails
43
set -euo pipefail
44
- skopeo list-tags docker://${{ github.repository }} | jq --raw-output '.Tags[]' > tags
+ skopeo list-tags docker://ghcr.io/${{ github.repository }} | jq --raw-output '.Tags[]' > tags
45
- name: Get latest release and rc tags
46
47
STABLE_TAG="$(grep -P '^v\d+\.\d+\.\d+$' tags | sort -rV | head -n1)"
0 commit comments