From a5ff9b1c84cf4fba2f7e90977e8a4d30cd9f8564 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 19 Sep 2025 07:25:02 +0500 Subject: [PATCH] gha: don't forget to checkout before calling release script from the repo --- .github/workflows/c-cpp.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 45260dc9..ecb5439e 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -117,6 +117,8 @@ jobs: needs: [build, flatpak] if: ${{ github.event_name == 'push' }} steps: + - name: Checkout + uses: actions/checkout@v4 - name: Remove old release, fetch artifacts, repackage binaries and upload new release env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}