Skip to content

Commit

Permalink
Merge pull request #99 from jayree/main
Browse files Browse the repository at this point in the history
fix: fix ignore-scripts
  • Loading branch information
iowillhoit committed May 9, 2024
2 parents 46ed893 + 759b1fe commit 64c4d4d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/actions/yarnInstallWithRetries/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ name: yarn-install-with-retries
description: "wraps yarn install with retries/timeout to handle network failures"
inputs:
ignore-scripts:
type: boolean
default: false
default: 'false'
description: "Skip pre/post install scripts"
runs:
using: composite
steps:
- name: yarn install
uses: salesforcecli/github-workflows/.github/actions/retry@main
with:
command: yarn install --network-timeout 600000 ${{ inputs.ignore-scripts && '--ignore-scripts' || '' }}
command: yarn install --network-timeout 600000 ${{ inputs.ignore-scripts == 'true' && '--ignore-scripts' || '' }}

0 comments on commit 64c4d4d

Please sign in to comment.