-
Notifications
You must be signed in to change notification settings - Fork 32
164 lines (136 loc) · 4.26 KB
/
publish-deploy.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
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
env:
REGISTRY: ghcr.io
SERVER_TARGET_NAME: server
SERVER_BUILD_CONTEXT: server
CONSOLE_TARGET_NAME: console
CONSOLE_BUILD_CONTEXT: console
FRONTEND_TARGET_NAME: frontend
FRONTEND_BUILD_CONTEXT: frontend
name: Publish and deploy
on:
workflow_dispatch:
push:
tags:
- "v*.*.*"
permissions:
contents: read
packages: write
id-token: write
jobs:
publish_backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY }}/${{ github.repository }}/${{ env.SERVER_TARGET_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ${{ env.SERVER_BUILD_CONTEXT }}
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ steps.meta.outputs.tags }}
publish_console:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Required to compile the client SDKS on runners without built-in node suppot
- uses: actions/setup-node@v3
with:
node-version: '>= 20'
- name: Compile SDKs
run: |
OPENAPI_BASE=/api make frontend-clients
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY }}/${{ github.repository }}/${{ env.CONSOLE_TARGET_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ${{ env.CONSOLE_BUILD_CONTEXT }}
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ steps.meta.outputs.tags }}
publish_frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Required to compile the client SDKS on runners without built-in node suppot
- uses: actions/setup-node@v3
with:
node-version: '>= 20'
- name: Compile SDKs
run: |
OPENAPI_BASE=/api make frontend-clients
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY }}/${{ github.repository }}/${{ env.FRONTEND_TARGET_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ${{ env.FRONTEND_BUILD_CONTEXT }}
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ steps.meta.outputs.tags }}
deploy_prod:
runs-on: ubuntu-latest
needs:
- publish_backend
- publish_frontend
- publish_console
steps:
- name: Setup ssh
run: |
echo "${{ secrets.DEPLOY_SSH_PRIVATE_KEY_B64 }}" | base64 -d > /tmp/privkey
chmod 400 /tmp/privkey
- name: Deploy
run: ssh -i /tmp/privkey -o StrictHostKeyChecking=no ${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }} 'cd agentlabs && sh deploy.sh'