Skip to content

Commit 1cf7639

Browse files
authored
feat: Wait for release to be deleted
1 parent 35acfa9 commit 1cf7639

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if (( rc == 0 )); then
2020
gh release delete "$INPUT_TAG" --cleanup-tag --yes
2121

2222
# Workaround for https://github.com/cli/cli/issues/8458
23-
while git fetch --tags --prune-tags; git tag -l | grep "$INPUT_TAG"; do
23+
while git fetch --tags --prune-tags; git tag -l | grep -x "$INPUT_TAG"; do
2424
echo "Waiting for release $INPUT_TAG to be deleted.."
2525
sleep 3
2626
done

0 commit comments

Comments
 (0)