Skip to content

Commit

Permalink
Increasing retry timeout [deploy]
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed Jan 30, 2022
1 parent b8a6054 commit cd68abd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,25 +63,25 @@ jobs:
- name: Deploy new images
uses: nick-invision/retry@v2
with:
timeout_minutes: 10
timeout_minutes: 20
max_attempts: 3
command: VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make release
- name: Tag images as latest
uses: nick-invision/retry@v2
with:
timeout_minutes: 10
timeout_minutes: 20
max_attempts: 3
command: VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make tag_latest
- name: Deploy latest tag
uses: nick-invision/retry@v2
with:
timeout_minutes: 10
timeout_minutes: 20
max_attempts: 3
command: VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make release_latest
- name: Tag browser images
uses: nick-invision/retry@v2
with:
timeout_minutes: 10
timeout_minutes: 20
max_attempts: 3
command: VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} PUSH_IMAGE=true make tag_and_push_browser_images
- name: Create release notes (release_notes.md)
Expand Down

0 comments on commit cd68abd

Please sign in to comment.