From 5274abb9eae6c8bfcc3eb25afb55bdeb33d46c82 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Thu, 29 Jun 2023 11:17:23 +0100 Subject: [PATCH] Fix --- .github/workflows/budibase_ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/budibase_ci.yml b/.github/workflows/budibase_ci.yml index bb5f5089a0..51b8c245ea 100644 --- a/.github/workflows/budibase_ci.yml +++ b/.github/workflows/budibase_ci.yml @@ -28,14 +28,14 @@ jobs: steps: - name: Checkout repo and submodules uses: actions/checkout@v3 - if: ${{ github.repository == "Budibase/budibase" }} + if: github.repository == "Budibase/budibase" with: submodules: true token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }} - name: Checkout repo only uses: actions/checkout@v3 - if: ${{ github.repository != "Budibase/budibase" }} + if: github.repository != "Budibase/budibase" - name: Use Node.js 14.x uses: actions/setup-node@v3