We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d716d97 commit 798abc6Copy full SHA for 798abc6
1 file changed
.github/workflows/test.yml
@@ -43,9 +43,12 @@ jobs:
43
sleep 1
44
done
45
46
- # Extract the API URL
+ # Extract the API URL and ensure it ends with /cache
47
if [ -f "$ENV_FILE" ]; then
48
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
52
echo "Found API URL: $API_URL"
53
echo "AERON_CACHE_API_URL=$API_URL" >> $GITHUB_ENV
54
else
0 commit comments