aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-07-13 07:50:40 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-07-13 07:50:40 +0530
commit7eaae2e46fba070e0d42c14101f51156841444d1 (patch)
tree7428e6f6701b41e788f77256acc83f1e1da34ec8 /.github
parent5.6.0-nightly.84 (diff)
downloadferdium-app-7eaae2e46fba070e0d42c14101f51156841444d1.tar.gz
ferdium-app-7eaae2e46fba070e0d42c14101f51156841444d1.tar.zst
ferdium-app-7eaae2e46fba070e0d42c14101f51156841444d1.zip
Trying to fix broken build due to missing 'git-sh-setup' for windows build agents.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ferdi-builds.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ferdi-builds.yml b/.github/workflows/ferdi-builds.yml
index d89fbae6e..e69d03dcc 100644
--- a/.github/workflows/ferdi-builds.yml
+++ b/.github/workflows/ferdi-builds.yml
@@ -319,13 +319,17 @@ jobs:
319 node-version: 14.17.3 319 node-version: 14.17.3
320 - name: Fix corrupted node cache 320 - name: Fix corrupted node cache
321 run: npm cache clean --force 321 run: npm cache clean --force
322 shell: bash
322 - name: Install node dependencies recursively 323 - name: Install node dependencies recursively
323 run: npx lerna bootstrap 324 run: npx lerna bootstrap
325 shell: bash
324 - name: Package recipes 326 - name: Package recipes
325 run: npm i && npm run package 327 run: npm i && npm run package
326 working-directory: ./recipes 328 working-directory: ./recipes
329 shell: bash
327 - name: Run linter and tests 330 - name: Run linter and tests
328 run: npm run lint && npm run test 331 run: npm run lint && npm run test
332 shell: bash
329 - name: Build Ferdi without publish for any branch not 'nightly' and not 'release' 333 - name: Build Ferdi without publish for any branch not 'nightly' and not 'release'
330 if: ${{ env.GIT_BRANCH_NAME != 'nightly' && env.GIT_BRANCH_NAME != 'release' }} 334 if: ${{ env.GIT_BRANCH_NAME != 'nightly' && env.GIT_BRANCH_NAME != 'release' }}
331 run: npm run build -- --publish never 335 run: npm run build -- --publish never