-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (37 loc) · 1.18 KB
/
generate_addressbooks.yaml
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
name: Generate Addressbooks Deployments
on:
schedule:
- cron: "0 0 * * 3"
workflow_dispatch:
jobs:
refresh_books:
runs-on: ubuntu-latest
env:
GRAPH_API_KEY: ${{ secrets.GRAPH_API_KEY }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Update Files
id: update
run: |
git clone https://github.com/balancer/balancer-deployments.git
export DEPLOYMENTS_REPO_ROOT_URL=`pwd`/balancer-deployments
pip3 install -r bal_addresses/requirements.txt
python3 gen_pools_and_gauges.py
python3 gen_mono_addressbook.py
python3 gen_addresses.py
python3 gen_subgraph_urls.py
rm -rf balancer-deployments
git add -A
- name: pull-request
uses: peter-evans/create-pull-request@v7
with:
commit-message: "Scheduled update to addressbooks deployments"
title: "Scheduled update to addressbooks deployments"
branch: "gha-addressbook"
reviewers: "gosuto-inzasheru"
labels: "Automatic"