From 6d453b0a33e6850d61711fa1ce5b05363dd00456 Mon Sep 17 00:00:00 2001 From: Frank Halasz Date: Fri, 20 Mar 2026 17:54:06 -0700 Subject: [PATCH] Change cb80/delrel@latest action over to equivalent gh cli call due to node 20 deprecation. Fix code to delete placeholder text in setting up downloads page. Both in buildLoadup.yml. --- .github/workflows/buildLoadup.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/buildLoadup.yml b/.github/workflows/buildLoadup.yml index 65c92695..00e43403 100644 --- a/.github/workflows/buildLoadup.yml +++ b/.github/workflows/buildLoadup.yml @@ -231,10 +231,9 @@ jobs: # Push the release up to github releases - name: Delete existing release with same tag (if any) - uses: cb80/delrel@latest - with: - tag: ${{ env.GITHUB_RELEASE_TAG }} - continue-on-error: true + run: gh release delete ${{ env.GITHUB_RELEASE_TAG }} --cleanup-tag --yes || true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Push the release id: push @@ -610,7 +609,7 @@ jobs: # Remove placeholder.txt - name: Remove placeholder.txt run: | - gh release delete-asset ${{ env.MEDLEY_RELEASE_TAG }} placeholder.txt --yes + gh release delete-asset ${{ env.GITHUB_RELEASE_TAG }} placeholder.txt --yes || true env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}