From 4e887d81e351d62a4dff864fee296529ab7ade0c Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 7 May 2026 20:21:09 +0200 Subject: [PATCH] Removes duplication of act-tools install causing wai-deploy to fail --- .github/workflows/wai-deploy.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wai-deploy.yml b/.github/workflows/wai-deploy.yml index 214457d272..9301008508 100644 --- a/.github/workflows/wai-deploy.yml +++ b/.github/workflows/wai-deploy.yml @@ -21,11 +21,8 @@ jobs: restore-keys: | ${{ runner.os }}-node- - run: git config --global url."https://github.com/".insteadOf ssh://git@github.com/ - - name: Install dependencies - run: npm ci - # Since we control this we can safely just always use the latest - - name: Install act-tools latest - run: npm install github:act-rules/act-tools#main + - name: Install dependencies (including act-tools dev dependencies) + run: npm ci --include=dev - name: Configure git run: | git config --global url."https://${{ secrets.WAI_GIT_NAME }}:${{ secrets.WAI_GIT_ACCESS_TOKEN }}@github.com".insteadOf "https://github.com"