Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #12

Merged
merged 2 commits into from
Mar 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/go-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,14 @@ jobs:

- name: Delete previous tag
run: |
prevTag="$(doctl registry repository list-tags repository --format Tag | grep alice)"
if [ -n "$prevTag" ]
prevManifest="$(doctl registry repository list-manifests repository \
--format Digest,Tags --no-header=true -o json | grep alice | cut -c1-72)"
if [ -n "$prevManifest" ]
then
echo "Previous tag ${prevTag}"
doctl registry repository delete-tag --force $(echo $REPOSITORY) $(echo $prevTag)
echo "Previous digest manifest ${prevManifest}"
doctl registry repository delete-manifest --force $(echo $REPOSITORY) $(echo $prevManifest)
echo "Start garbage collection clean"
doctl registry garbage-collection start
doctl registry garbage-collection start --force
else
echo "Not have previous tag"
fi
Expand Down