From ae550fd59ed8f0546d4e22789fccab7f9c8c0176 Mon Sep 17 00:00:00 2001 From: HavenDV Date: Fri, 16 Aug 2024 14:10:12 +0400 Subject: [PATCH] ci: Fixed missing checkout. --- .github/workflows/dotnet.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 62373dd..9725f45 100755 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -27,9 +27,11 @@ jobs: needs: [publish] if: startsWith(github.ref, 'refs/tags/v') steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Create release - run: | - gh release create ${{ github.ref_name }} \ + run: gh release create ${{ github.ref_name }} \ --title "${{ github.ref_name }}" \ --generate-notes env: