fix: checkout in the create release step in the nightly workflow

This commit is contained in:
Stavros
2025-05-15 16:49:54 +03:00
parent dcd6c5667d
commit ad5aa30b9f

View File

@@ -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 }}