File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,12 +40,11 @@ jobs:
4040
4141 - name : Get releases.properties from main branch
4242 run : |
43- # Fetch releases.properties from main branch if it doesn't exist in current branch
44- if [ ! -f "releases.properties" ]; then
45- echo "releases.properties not found in current branch, fetching from main..."
46- git fetch origin main:main
47- git checkout main -- releases.properties || echo "Could not fetch releases.properties from main"
48- fi
43+ # Always fetch releases.properties from main branch to ensure we have the latest release URLs
44+ echo "Fetching releases.properties from main branch..."
45+ git fetch origin main:main
46+ git checkout origin/main -- releases.properties || echo "Could not fetch releases.properties from main"
47+ echo "✅ Using releases.properties from main branch"
4948
5049 - name : Get changed PHP versions
5150 id : get-versions
You can’t perform that action at this time.
0 commit comments