From 8e464f6f6c3608b3dfeb214c1ac7e10d42fc5117 Mon Sep 17 00:00:00 2001 From: tarikgul Date: Thu, 2 Jan 2025 14:37:31 -0500 Subject: [PATCH] Set execute for build script in CI --- .github/workflows/push-master.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push-master.yml b/.github/workflows/push-master.yml index ecaf0c05..197b89a4 100644 --- a/.github/workflows/push-master.yml +++ b/.github/workflows/push-master.yml @@ -25,8 +25,11 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 'lts/*' + - name: Set Execute Permissions + run: chmod +x ./scripts/install-build-deps.sh + - name: Run Install Build Deps + run: bash ./scripts/install-build-deps.sh - name: build run: | yarn install --immutable - ./scripts/install-build-deps.sh yarn ${{ matrix.step }}