We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aad4b3e commit 6395114Copy full SHA for 6395114
1 file changed
.github/workflows/ci.yml
@@ -126,24 +126,24 @@ jobs:
126
DEST_DIR="arkanalyzer"
127
MAX_RETRIES=10
128
RETRY_DELAY=3 # Delay between retries in seconds
129
- BRANCH="neo/2025-06-18"
130
-
+ BRANCH="neo/2025-06-20"
+
131
for ((i=1; i<=MAX_RETRIES; i++)); do
132
git clone --depth=1 --branch $BRANCH $REPO_URL $DEST_DIR && break
133
echo "Clone failed, retrying in $RETRY_DELAY seconds..."
134
sleep "$RETRY_DELAY"
135
done
136
137
if [[ $i -gt $MAX_RETRIES ]]; then
138
echo "Failed to clone the repository after $MAX_RETRIES attempts."
139
exit 1
140
else
141
echo "Repository cloned successfully."
142
fi
143
144
echo "ARKANALYZER_DIR=$(realpath $DEST_DIR)" >> $GITHUB_ENV
145
cd $DEST_DIR
146
147
npm install
148
npm run build
149
0 commit comments