diff --git a/.github/workflows/push-tokens.yaml b/.github/workflows/push-tokens.yaml index bc752cf..3e22ec7 100644 --- a/.github/workflows/push-tokens.yaml +++ b/.github/workflows/push-tokens.yaml @@ -17,14 +17,16 @@ jobs: - name: Update tokenlist.json in DragonSwap Client run: | # Set up necessary variables - SOURCE_FILE_URL="https://raw.githubusercontent.com/dragonswap-app/assets/main/tokenlist.json?token=${{ secrets.GH_TOKEN }}" + SOURCE_REPO_OWNER=dragonswap-app + SOURCE_REPO_NAME=assets + SOURCE_FILE_PATH=tokenlist.json TARGET_REPO_OWNER=NIMA-Enterprises TARGET_REPO_NAME=dragonswap-client TARGET_FILE_PATH=apps/dragon-swap/tokenlist.json GITHUB_TOKEN=${{ secrets.GH_TOKEN }} - # Get the content of tokenlist.json from the source URL - SOURCE_FILE_CONTENT=$(curl -sSL $SOURCE_FILE_URL) + SOURCE_FILE_CONTENT=$(curl -sSL -H "Authorization: token $GITHUB_TOKEN" \ + "https://raw.githubusercontent.com/$SOURCE_REPO_OWNER/$SOURCE_REPO_NAME/main/$SOURCE_FILE_PATH") # Update tokenlist.json in the target repo curl -sSL -X PUT -H "Authorization: token $GITHUB_TOKEN" \