From 11173e64608c2b235f314c86c5433d09f8bb2eb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Mon, 12 Feb 2024 13:00:03 +0100 Subject: [PATCH] fix: github release missing checkout (#2264) actions/checkout was missing so it could not release --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f13b156d5..7b343c42f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,7 @@ jobs: release: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v3 - name: Create github release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}