From 4e0e18411cfdd5335549ebff7945088e00169efc Mon Sep 17 00:00:00 2001 From: Rushaway Date: Tue, 18 Aug 2026 09:18:17 +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 0301781..0796afe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,11 +39,11 @@ jobs: - uses: actions/checkout@v7 if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' - - uses: dev-drprasad/delete-tag-and-release@v1.1 + - name: Delete existing "latest" release and tag if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' - with: - delete_release: true - tag_name: latest + run: | + set -euo pipefail + gh release delete latest --cleanup-tag --yes || true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}