File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 4141 run : |
4242 if [ "${{ github.ref }}" == "refs/heads/develop" ]; then
4343 echo "REDFETCH_BASE_URL=https://www.redguides.com/devtestbaby" >> $GITHUB_ENV
44+ # Use production manifest endpoint (no /community) for develop builds.
45+ echo "REDFETCH_MANIFEST_URL=https://www.redguides.com/resources-manifest" >> $GITHUB_ENV
4446 fi
4547
4648 - name : Install Hatch
Original file line number Diff line number Diff line change 1414from redfetch import config
1515
1616BASE_URL = os .environ .get ("REDFETCH_BASE_URL" , "https://www.redguides.com/community" )
17- MANIFEST_URL = f"{ BASE_URL } /resources-manifest"
17+ MANIFEST_URL = os . environ . get ( "REDFETCH_MANIFEST_URL" ) or f"{ BASE_URL } /resources-manifest"
1818
1919# Manifest cache: 5 minutes TTL
2020_MANIFEST_TTL_SECONDS = 300
You can’t perform that action at this time.
0 commit comments