Skip to content

Commit

Permalink
Set retries another way
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario committed May 22, 2024
1 parent f5eaca3 commit 4d1428b
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/flytectl-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ jobs:
- " "
steps:
- uses: actions/checkout@v4
- run: |
chmod +x ./flytectl/install.sh
./flytectl/install.sh ${{ matrix.version }}
./bin/flytectl version
retry:
max-tries: 3
delay: 5
- uses: nick-fields/retry@v3
with:
timeout_seconds: 15
max_attempts: 3
command: |
chmod +x ./flytectl/install.sh
./flytectl/install.sh ${{ matrix.version }}
./bin/flytectl version

0 comments on commit 4d1428b

Please sign in to comment.