87
87
max_attempts : 3
88
88
retry_wait_seconds : 60
89
89
command : PLATFORMS="${PLATFORMS}" VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make build
90
- - name : Build Helm chart
91
- uses : nick-invision/retry@master
92
- with :
93
- timeout_minutes : 5
94
- max_attempts : 3
95
- retry_wait_seconds : 10
96
- command : |
97
- make chart_build_nightly
98
- echo "CHART_PACKAGE_PATH=$(cat /tmp/selenium_chart_version)" >> $GITHUB_ENV
99
- echo "CHART_FILE_NAME=$(basename $(cat /tmp/selenium_chart_version))" >> $GITHUB_ENV
100
90
- name : Login Docker Hub
101
91
run : |
102
92
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
@@ -115,13 +105,6 @@ jobs:
115
105
command : VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make release_nightly
116
106
- name : Update package versions
117
107
run : make generate_nightly_sbom
118
- - name : Push Helm chart to registry
119
- uses : nick-invision/retry@master
120
- with :
121
- timeout_minutes : 20
122
- max_attempts : 3
123
- retry_wait_seconds : 120
124
- command : make chart_release
125
108
- name : Get current latest tag
126
109
run : echo "LATEST_TAG=$(git describe --tags --abbrev=0 --exclude=nightly --exclude=selenium-grid*)" >> $GITHUB_ENV
127
110
- name : Display latest tag
@@ -144,6 +127,23 @@ jobs:
144
127
with :
145
128
tag : ${{ env.BASE_RELEASE }}
146
129
token : ${{ secrets.GITHUB_TOKEN }}
130
+ - name : Build Helm chart
131
+ uses : nick-invision/retry@master
132
+ with :
133
+ timeout_minutes : 5
134
+ max_attempts : 3
135
+ retry_wait_seconds : 10
136
+ command : |
137
+ make chart_build_nightly
138
+ echo "CHART_PACKAGE_PATH=$(cat /tmp/selenium_chart_version)" >> $GITHUB_ENV
139
+ echo "CHART_FILE_NAME=$(basename $(cat /tmp/selenium_chart_version))" >> $GITHUB_ENV
140
+ - name : Push Helm chart to registry
141
+ uses : nick-invision/retry@master
142
+ with :
143
+ timeout_minutes : 20
144
+ max_attempts : 3
145
+ retry_wait_seconds : 120
146
+ command : make chart_release
147
147
- name : Create Nightly Release
148
148
id : create_release
149
149
uses : softprops/action-gh-release@master
0 commit comments