File tree 1 file changed +20
-4
lines changed
1 file changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -61,13 +61,29 @@ jobs:
61
61
DOCKER_USERNAME : ${{secrets.DOCKER_USERNAME}}
62
62
DOCKER_PASSWORD : ${{secrets.DOCKER_PASSWORD}}
63
63
- name : Deploy new images
64
- run : VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make release
64
+ uses : nick-invision/retry@v2
65
+ with :
66
+ timeout_minutes : 10
67
+ max_attempts : 3
68
+ command : VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make release
65
69
- name : Tag images as latest
66
- run : VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make tag_latest
70
+ uses : nick-invision/retry@v2
71
+ with :
72
+ timeout_minutes : 10
73
+ max_attempts : 3
74
+ command : VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make tag_latest
67
75
- name : Deploy latest tag
68
- run : VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make release_latest
76
+ uses : nick-invision/retry@v2
77
+ with :
78
+ timeout_minutes : 10
79
+ max_attempts : 3
80
+ command : VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make release_latest
69
81
- name : Tag browser images
70
- run : VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} PUSH_IMAGE=true make tag_and_push_browser_images
82
+ uses : nick-invision/retry@v2
83
+ with :
84
+ timeout_minutes : 10
85
+ max_attempts : 3
86
+ command : VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} PUSH_IMAGE=true make tag_and_push_browser_images
71
87
- name : Create release notes (release_notes.md)
72
88
run : ./generate_release_notes.sh ${LATEST_TAG} origin/trunk ${GRID_VERSION} ${BUILD_DATE}
73
89
- name : Create Release
You can’t perform that action at this time.
0 commit comments