File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -126,24 +126,24 @@ jobs:
126126 DEST_DIR="arkanalyzer"
127127 MAX_RETRIES=10
128128 RETRY_DELAY=3 # Delay between retries in seconds
129- BRANCH="neo/2025-06-18 "
130-
129+ BRANCH="neo/2025-06-20 "
130+
131131 for ((i=1; i<=MAX_RETRIES; i++)); do
132132 git clone --depth=1 --branch $BRANCH $REPO_URL $DEST_DIR && break
133133 echo "Clone failed, retrying in $RETRY_DELAY seconds..."
134134 sleep "$RETRY_DELAY"
135135 done
136-
136+
137137 if [[ $i -gt $MAX_RETRIES ]]; then
138138 echo "Failed to clone the repository after $MAX_RETRIES attempts."
139139 exit 1
140140 else
141141 echo "Repository cloned successfully."
142142 fi
143-
143+
144144 echo "ARKANALYZER_DIR=$(realpath $DEST_DIR)" >> $GITHUB_ENV
145145 cd $DEST_DIR
146-
146+
147147 npm install
148148 npm run build
149149
You can’t perform that action at this time.
0 commit comments