diff --git a/.github/workflows/patch.yml b/.github/workflows/patch.yml index 24c767023a8..83c2d7ff925 100644 --- a/.github/workflows/patch.yml +++ b/.github/workflows/patch.yml @@ -76,9 +76,10 @@ jobs: - name: Download erpnext v14 backup if: steps.cache-v14.outputs.cache-hit != 'true' - run: gh release download v14-baseline -R frappe/erpnext -p erpnext-v14.sql.gz -O ~/erpnext-v14.sql.gz - env: - GH_TOKEN: ${{ github.token }} + run: | + curl -fSL --retry 5 --retry-all-errors --retry-delay 5 \ + -o ~/erpnext-v14.sql.gz \ + https://github.com/frappe/erpnext/releases/download/v14-baseline/erpnext-v14.sql.gz - name: Cache pip uses: actions/cache@v4