From e2d363a259bb871cfdee9298592b57258fa38a43 Mon Sep 17 00:00:00 2001 From: Rushaway Date: Tue, 18 Aug 2026 08:37:45 +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 1e5489d..64bd1d3 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 }}