-
-
Notifications
You must be signed in to change notification settings - Fork 62
162 lines (145 loc) · 4.62 KB
/
release.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
name: Release
on:
push:
branches:
- main
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-20.04
outputs:
published: ${{ steps.semantic.outputs.new_release_published }}
version: ${{ steps.semantic.outputs.new_release_version }}
steps:
- uses: actions/checkout@v3
- name: Semantic Release
id: semantic
uses: cycjimmy/[email protected]
with:
semantic_version: 18
extra_plugins: |
@semantic-release/release-notes-generator@^10
@semantic-release/github@^8
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish_x86:
needs:
- release
if: needs.release.outputs.published == 'true'
runs-on: ubuntu-latest
env:
arch: amd64
outputs:
image_digest: ${{ steps.build.outputs.digest }}
steps:
- uses: actions/checkout@v3
- id: meta
uses: docker/metadata-action@v4
with:
images: |
supabase/edge-runtime
tags: |
type=raw,value=v${{ needs.release.outputs.version }}_${{ env.arch }}
- uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- uses: cardinalby/export-env-action@v2
with:
envFile: ".env"
- id: build
uses: docker/build-push-action@v3
with:
push: true
platforms: linux/${{ env.arch }}
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
GIT_V_TAG=${{ needs.release.outputs.version }}
ONNXRUNTIME_VERSION=${{ env.ONNXRUNTIME_VERSION }}
publish_arm:
needs:
- release
if: needs.release.outputs.published == 'true'
runs-on: arm-runner
env:
arch: arm64
outputs:
image_digest: ${{ steps.build.outputs.digest }}
steps:
- uses: actions/checkout@v3
- id: meta
uses: docker/metadata-action@v4
with:
images: |
supabase/edge-runtime
tags: |
type=raw,value=v${{ needs.release.outputs.version }}_${{ env.arch }}
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- uses: docker/setup-buildx-action@v2
with:
driver: docker
driver-opts: |
image=moby/buildkit:master
network=host
- uses: cardinalby/export-env-action@v2
with:
envFile: ".env"
- id: build
uses: docker/build-push-action@v3
with:
context: .
push: true
platforms: linux/${{ env.arch }}
tags: ${{ steps.meta.outputs.tags }}
no-cache: true
build-args: |
GIT_V_TAG=${{ needs.release.outputs.version }}
ONNXRUNTIME_VERSION=${{ env.ONNXRUNTIME_VERSION }}
merge_manifest:
needs: [release, publish_x86, publish_arm]
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Merge multi-arch manifests
run: |
docker buildx imagetools create -t supabase/edge-runtime:v${{ needs.release.outputs.version }} \
supabase/edge-runtime@${{ needs.publish_x86.outputs.image_digest }} \
supabase/edge-runtime@${{ needs.publish_arm.outputs.image_digest }}
- name: configure aws credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets.PROD_AWS_ROLE }}
aws-region: us-east-1
- name: Login to ECR
uses: docker/login-action@v2
with:
registry: public.ecr.aws
- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Mirror to ECR
uses: akhilerm/[email protected]
with:
src: docker.io/supabase/edge-runtime:v${{ needs.release.outputs.version }}
dst: |
public.ecr.aws/supabase/edge-runtime:v${{ needs.release.outputs.version }}
ghcr.io/supabase/edge-runtime:v${{ needs.release.outputs.version }}