Skip to content

Commit 798abc6

Browse files
committed
Add integration workflow
1 parent d716d97 commit 798abc6

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,12 @@ jobs:
4343
sleep 1
4444
done
4545
46-
# Extract the API URL
46+
# Extract the API URL and ensure it ends with /cache
4747
if [ -f "$ENV_FILE" ]; then
4848
API_URL=$(grep AERON_CACHE_API "$ENV_FILE" | cut -d'=' -f2)
49+
if [[ "$API_URL" != */cache ]]; then
50+
API_URL="${API_URL%/}/cache"
51+
fi
4952
echo "Found API URL: $API_URL"
5053
echo "AERON_CACHE_API_URL=$API_URL" >> $GITHUB_ENV
5154
else

0 commit comments

Comments
 (0)