File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -125,25 +125,25 @@ jobs:
125
125
REPO_URL="https://gitcode.com/Lipen/arkanalyzer"
126
126
DEST_DIR="arkanalyzer"
127
127
MAX_RETRIES=10
128
- RETRY_DELAY=3 # Delay between retries in seconds
129
- BRANCH="neo/2025-05-30b "
130
-
128
+ RETRY_DELAY=3 # Delay between retries in seconds
129
+ BRANCH="neo/2025-06-16 "
130
+
131
131
for ((i=1; i<=MAX_RETRIES; i++)); do
132
132
git clone --depth=1 --branch $BRANCH $REPO_URL $DEST_DIR && break
133
133
echo "Clone failed, retrying in $RETRY_DELAY seconds..."
134
134
sleep "$RETRY_DELAY"
135
135
done
136
-
136
+
137
137
if [[ $i -gt $MAX_RETRIES ]]; then
138
138
echo "Failed to clone the repository after $MAX_RETRIES attempts."
139
139
exit 1
140
140
else
141
141
echo "Repository cloned successfully."
142
142
fi
143
-
143
+
144
144
echo "ARKANALYZER_DIR=$(realpath $DEST_DIR)" >> $GITHUB_ENV
145
145
cd $DEST_DIR
146
-
146
+
147
147
npm install
148
148
npm run build
149
149
You can’t perform that action at this time.
0 commit comments