registry
Some checks failed
Build and Deploy / Build & Push Image (push) Failing after 6s

This commit is contained in:
2026-03-16 13:18:38 -06:00
parent c85dcb099c
commit 7471d02b83

View File

@@ -27,7 +27,7 @@ jobs:
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and push image
id: build
@@ -55,10 +55,10 @@ jobs:
- name: Cleanup old images
run: |
# Delete all container image versions except the most recent one
VERSIONS=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
VERSIONS=$(curl -s -H "Authorization: token ${{ secrets.REGISTRY_TOKEN }}" \
"${{ env.REGISTRY }}/api/v1/packages/alexmickelson?type=container&q=cobblemon&limit=50" \
| jq -r 'sort_by(.created) | reverse | .[1:] | .[].id')
for id in $VERSIONS; do
curl -s -X DELETE -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
curl -s -X DELETE -H "Authorization: token ${{ secrets.REGISTRY_TOKEN }}" \
"${{ env.REGISTRY }}/api/v1/packages/alexmickelson/container/cobblemon/${id}"
done