forked from curvefi/curve-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (41 loc) · 1.39 KB
/
upload-tokenlist.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
- name: Upload base tokenlist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DRPC_KEY: ${{ secrets.DRPC_KEY }}
run: poetry run python upkeep.py base