You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/scripts/create-platform-release-pr.sh
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -184,9 +184,11 @@ yarn --cwd install
184
184
echo"Generating test plan csv.."
185
185
yarn run gen:commits "${PLATFORM}""${PREVIOUS_VERSION}""${RELEASE_BRANCH_NAME}""${PROJECT_GIT_DIR}"
186
186
187
-
echo"Updating release sheet.."
188
-
# Create a new Release Sheet Page for the new version with our commits.csv content
189
-
yarn run update-release-sheet "${PLATFORM}""${NEW_VERSION}""${GOOGLE_DOCUMENT_ID}""./commits.csv""${PROJECT_GIT_DIR}""${MOBILE_TEMPLATE_SHEET_ID}""${EXTENSION_TEMPLATE_SHEET_ID}"
187
+
if [[ "${TEST_ONLY:-true}"!="true" ]];then
188
+
echo"Updating release sheet.."
189
+
# Create a new Release Sheet Page for the new version with our commits.csv content
190
+
yarn run update-release-sheet "${PLATFORM}""${NEW_VERSION}""${GOOGLE_DOCUMENT_ID}""./commits.csv""${PROJECT_GIT_DIR}""${MOBILE_TEMPLATE_SHEET_ID}""${EXTENSION_TEMPLATE_SHEET_ID}"
0 commit comments