Explicitly set shell to bash for retry action in CI

This commit is contained in:
49lf
2025-03-03 14:18:59 -05:00
parent dec74f633b
commit 9cc956ddff
2 changed files with 4 additions and 0 deletions

View File

@ -134,6 +134,7 @@ jobs:
# Windows is picky sometimes and fails on fetch. Step takes about ~30s
uses: nick-fields/retry@v3.0.2
with:
shell: bash
timeout_minutes: 2
max_attempts: 3
command: yarn install
@ -185,6 +186,7 @@ jobs:
# TODO: Fix electron-notarize flakes. The logs above should help gather more data on failures
uses: nick-fields/retry@v3.0.2
with:
shell: bash
timeout_minutes: 10
max_attempts: 3
command: yarn tronb:package:prod
@ -246,6 +248,7 @@ jobs:
# TODO: Fix electron-notarize flakes. The logs above should help gather more data on failures
uses: nick-fields/retry@v3.0.2
with:
shell: bash
timeout_minutes: 10
max_attempts: 3
command: yarn tronb:package:prod

View File

@ -196,6 +196,7 @@ jobs:
if: ${{ !cancelled() && (success() || failure()) }}
uses: nick-fields/retry@v3.0.2
with:
shell: bash
command: .github/ci-cd-scripts/playwright-electron.sh ${{matrix.shardIndex}} ${{matrix.shardTotal}} ${{matrix.os}}
timeout_minutes: 30
max_attempts: 25