-
Notifications
You must be signed in to change notification settings - Fork 15
170 lines (157 loc) · 5.07 KB
/
continuous-delivery.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
name: Continuous Delivery
on:
push:
branches: [main, staging]
env:
NODE_VERSION: "18.x"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: "yarn"
- name: Install dependencies
run: "yarn install"
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
tags: |
ghcr.io/reservoirprotocol/relayer:latest
ghcr.io/reservoirprotocol/relayer:${{ github.sha }}
deploy-dev:
name: Deploy to Development
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [build]
environment: dev
if: github.ref == 'refs/heads/staging'
steps:
- name: Checkout repository k8s-configs
uses: actions/checkout@v3
with:
repository: unevenlabs/k8s-configs
token: ${{ secrets.DEVOPSBOT_TOKEN }}
path: k8s-configs
- name: Deploy to Dev Environment
working-directory: k8s-configs
run: |
./utils/version_update.sh \
./dev/platform/relayer-sepolia.yaml \
${{ github.sha }} \
relayer-sepolia
deploy-prod:
name: Deploy to Production
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [build]
environment: prod
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout repository k8s-configs
uses: actions/checkout@v3
with:
repository: unevenlabs/k8s-configs
token: ${{ secrets.DEVOPSBOT_TOKEN }}
path: k8s-configs
- name: Deploy to Prod Environment
working-directory: k8s-configs
run: |
./utils/version_update.sh \
./prod/platform/relayer-mainnet.yaml \
${{ github.sha }} \
relayer-mainnet
./utils/version_update.sh \
./prod/platform/relayer-arbitrum.yaml \
${{ github.sha }} \
relayer-arbitrum
./utils/version_update.sh \
./prod/platform/relayer-polygon.yaml \
${{ github.sha }} \
relayer-polygon
./utils/version_update.sh \
./prod/platform/relayer-realtime-mainnet.yaml \
${{ github.sha }} \
relayer-realtime-mainnet
./utils/version_update.sh \
./prod/platform/relayer-optimism.yaml \
${{ github.sha }} \
relayer-optimism
./utils/version_update.sh \
./prod/platform/relayer-arbitrum-nova.yaml \
${{ github.sha }} \
relayer-arbitrum-nova
./utils/version_update.sh \
./prod/platform/relayer-avalanche.yaml \
${{ github.sha }} \
relayer-avalanche
./utils/version_update.sh \
./prod/platform/relayer-mumbai.yaml \
${{ github.sha }} \
relayer-mumbai
./utils/version_update.sh \
./prod/platform/relayer-base.yaml \
${{ github.sha }} \
relayer-base
./utils/version_update.sh \
./prod/platform/relayer-zora.yaml \
${{ github.sha }} \
relayer-zora
./utils/version_update.sh \
./prod/platform/relayer-sepolia.yaml \
${{ github.sha }} \
relayer-sepolia
./utils/version_update.sh \
./prod/platform/relayer-bsc.yaml \
${{ github.sha }} \
relayer-bsc
./utils/version_update.sh \
./prod/platform/relayer-linea.yaml \
${{ github.sha }} \
relayer-linea
./utils/version_update.sh \
./prod/platform/relayer-polygon-zkevm.yaml \
${{ github.sha }} \
relayer-polygon-zkevm
./utils/version_update.sh \
./prod/platform/relayer-zksync.yaml \
${{ github.sha }} \
relayer-zksync
./utils/version_update.sh \
./prod/platform/relayer-arbitrum-nova.yaml \
${{ github.sha }} \
relayer-arbitrum-nova
./utils/version_update.sh \
./prod/platform/relayer-blast.yaml \
${{ github.sha }} \
relayer-blast
./utils/version_update.sh \
./prod/platform/relayer-opbnb.yaml \
${{ github.sha }} \
relayer-opbnb
./utils/version_update.sh \
./prod/platform/relayer-scroll.yaml \
${{ github.sha }} \
relayer-scroll