Skip to content

Commit 6395114

Browse files
committed
Use AA branch 'neo/2025-06-20'
1 parent aad4b3e commit 6395114

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)