Upload Tokenlist #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upload Tokenlist | |
on: | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
upload-tokenlist: | |
runs-on: ubuntu-latest | |
environment: tokenlist-check | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: "Setup Python, Poetry and Dependencies" | |
uses: packetcoders/action-setup-cache-python-poetry@main | |
with: | |
python-version: 3.11 | |
poetry-version: 1.8.3 | |
- name: Upload full tokenlist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DRPC_KEY: ${{ secrets.DRPC_KEY }} | |
run: poetry run python upkeep.py all_networks | |
- name: Upload ethereum tokenlist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DRPC_KEY: ${{ secrets.DRPC_KEY }} | |
run: poetry run python upkeep.py ethereum | |
- name: Upload arbitrum tokenlist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DRPC_KEY: ${{ secrets.DRPC_KEY }} | |
run: poetry run python upkeep.py arbitrum | |
- name: Upload gnosis tokenlist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DRPC_KEY: ${{ secrets.DRPC_KEY }} | |
run: poetry run python upkeep.py gnosis |