From ad5aa30b9fc0a3238e5d96c29c6d760ded9c37da Mon Sep 17 00:00:00 2001 From: Stavros Date: Thu, 15 May 2025 16:49:54 +0300 Subject: [PATCH] fix: checkout in the create release step in the nightly workflow --- .github/workflows/nightly.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index bcbb7c1..b0f8d51 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -6,8 +6,11 @@ jobs: create-release: runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Delete old release - run: gh release delete --cleanup-tag --yes nightly + run: gh release delete --cleanup-tag --yes nightly || echo release not found env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} OWNER: ${{ github.repository_owner }}