From d0086ac1ba172464aedb012aa82c4f7724d1152b Mon Sep 17 00:00:00 2001 From: Rushaway Date: Tue, 18 Aug 2026 09:22:36 +0200 Subject: [PATCH] chore(ci): remove deprecated delete-tag-and-release action --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc3c620..299479f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,10 +50,10 @@ jobs: steps: - uses: actions/checkout@v7 - - uses: dev-drprasad/delete-tag-and-release@v1.1 - with: - delete_release: true - tag_name: latest + - name: Delete existing "latest" release and tag + run: | + set -euo pipefail + gh release delete latest --cleanup-tag --yes || true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}