File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 3333 # TODO We should be able to skip yarn / bootstrap if we cache enough things. Leaving because skipping causes issues.
3434 - name : Install
3535 if : inputs.is-prebuild != 'true' || steps.cache-build-artifacts.outputs.cache-hit != 'true'
36- run : yarn
3736 shell : bash
3837 working-directory : ./amplify-js
38+ run : |
39+ for i in {1..3}; do
40+ echo "Starting attempt $i."
41+ yarn && break
42+ echo "Attempt $i failed."
43+ sleep 5
44+ done
3945 - name : Bootstrap
4046 if : inputs.is-prebuild != 'true' || steps.cache-build-artifacts.outputs.cache-hit != 'true'
4147 run : yarn bootstrap
Original file line number Diff line number Diff line change 3131 path : amplify-js
3232 - name : Setup node and build the repository
3333 uses : ./amplify-js/.github/actions/node-and-build
34+ - name : Set Xcode version
35+ run : |
36+ sudo xcode-select -s /Applications/Xcode_16.4.app
3437 - name : Setup samples staging repository
3538 uses : ./amplify-js/.github/actions/setup-samples-staging
3639 with :
You can’t perform that action at this time.
0 commit comments