-
Notifications
You must be signed in to change notification settings - Fork 0
215 lines (205 loc) · 7.81 KB
/
docker.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
on:
push:
branches:
- main
- staging
- expt
pull_request:
branches:
- main
- staging
# Trigger the workflow on release activity
release:
# Only use the types keyword to narrow down the activity types that will trigger your workflow.
types:
- published
- edited
- created
# Certain actions will only run when this is the main repo.
env:
MAIN_REPO: classtranscribe/latextranscribe
DOCKERHUB_ORG: classtranscribe
jobs:
build-server:
name: Build server Docker image
runs-on: ubuntu-latest
env:
FOLDER: ./server
IMAGE: latextranscribe
DOCKERFILE: Dockerfile.cpu
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
- name: Download model weights using huggingface_hub
run: |
cd server
HF_HUB_ENABLE_HF_TRANSFER=1 uv run download_models.py
du -hs models/
# calculate some variables that are used later
- name: github branch
run: |
if [ "${{ github.event.release.target_commitish }}" != "" ]; then
BRANCH="${{ github.event.release.target_commitish }}"
else
BRANCH=${GITHUB_REF##*/}
fi
echo "GITHUB_BRANCH=${BRANCH}" >> $GITHUB_ENV
# Commit was for main/release branch, build a new version
if [ "$BRANCH" == "master" -o "$BRANCH" == "main" ]; then
version="$(cat gui/package.json | jq -r .version)"
echo "VERSION=$(version)" >> $GITHUB_ENV
tags="latest"
oldversion=""
while [ "${oldversion}" != "${version}" ]; do
oldversion="${version}"
tags="${tags},${version}"
version=${version%.*}
done
echo "TAGS=${tags}" >> $GITHUB_ENV
else
echo "VERSION=$BRANCH" >> $GITHUB_ENV
echo "TAGS=$BRANCH" >> $GITHUB_ENV
fi
# build the docker image, this will always run to make sure
# the Dockerfile still works.
- name: Build Docker image
uses: elgohr/Publish-Docker-Github-Action@2.22
env:
BRANCH: ${{ env.GITHUB_BRANCH }}
VERSION: ${{ env.VERSION }}
BUILDNUMBER: ${{ github.run_number }}
GITSHA1: ${{ github.sha }}
with:
registry: docker.pkg.github.com
name: ${{ github.repository_owner }}/${{ github.event.repository.name }}/${{ env.IMAGE }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
workdir: ${{ env.FOLDER }}
tags: "${{ env.TAGS }}"
dockerfile: ${{ env.DOCKERFILE }}
buildargs: BRANCH,VERSION,BUILDNUMBER,GITSHA1
no_push: true
# TODO: need publish permissions for ghcr.io
# this will publish to github container registry
#- name: Publish to GitHub
# if: github.event_name != 'pull_request' && github.repository == env.MAIN_REPO
# uses: elgohr/Publish-Docker-Github-Action@2.22
# env:
# BRANCH: ${{ env.GITHUB_BRANCH }}
# VERSION: ${{ env.VERSION }}
# BUILDNUMBER: ${{ github.run_number }}
# GITSHA1: ${{ github.sha }}
# with:
# registry: ghcr.io
# name: ${{ github.repository_owner }}/${{ matrix.IMAGE }}
# username: ${{ secrets.GHCR_USERNAME }}
# password: ${{ secrets.GHCR_PASSWORD }}
# context: ${{ matrix.FOLDER }}
# tags: "${{ env.TAGS }}"
# buildargs: BRANCH,VERSION,BUILDNUMBER,GITSHA1
# this will publish to dockerhub
- name: Publish to Docker Hub
if: github.event_name != 'pull_request' && github.repository == env.MAIN_REPO
uses: elgohr/Publish-Docker-Github-Action@2.22
env:
BRANCH: ${{ env.GITHUB_BRANCH }}
VERSION: ${{ env.VERSION }}
BUILDNUMBER: ${{ github.run_number }}
GITSHA1: ${{ github.sha }}
with:
name: ${{ env.DOCKERHUB_ORG }}/${{ env.IMAGE }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
workdir: ${{ env.FOLDER }}
tags: "${{ env.TAGS }}"
dockerfile: ${{ env.DOCKERFILE }}
buildargs: BRANCH,VERSION,BUILDNUMBER,GITSHA1
build-frontend:
name: Build frontend Docker image
runs-on: ubuntu-latest
env:
FOLDER: ./frontend
IMAGE: latextranscribe-frontend
DOCKERFILE: Dockerfile
steps:
- uses: actions/checkout@v4
# calculate some variables that are used later
- name: github branch
run: |
if [ "${{ github.event.release.target_commitish }}" != "" ]; then
BRANCH="${{ github.event.release.target_commitish }}"
else
BRANCH=${GITHUB_REF##*/}
fi
echo "GITHUB_BRANCH=${BRANCH}" >> $GITHUB_ENV
# Commit was for main/release branch, build a new version
if [ "$BRANCH" == "master" -o "$BRANCH" == "main" ]; then
version="$(cat gui/package.json | jq -r .version)"
echo "VERSION=$(version)" >> $GITHUB_ENV
tags="latest"
oldversion=""
while [ "${oldversion}" != "${version}" ]; do
oldversion="${version}"
tags="${tags},${version}"
version=${version%.*}
done
echo "TAGS=${tags}" >> $GITHUB_ENV
else
echo "VERSION=$BRANCH" >> $GITHUB_ENV
echo "TAGS=$BRANCH" >> $GITHUB_ENV
fi
# build the docker image, this will always run to make sure
# the Dockerfile still works.
- name: Build Docker image
uses: elgohr/Publish-Docker-Github-Action@2.22
env:
BRANCH: ${{ env.GITHUB_BRANCH }}
VERSION: ${{ env.VERSION }}
BUILDNUMBER: ${{ github.run_number }}
GITSHA1: ${{ github.sha }}
with:
registry: docker.pkg.github.com
name: ${{ github.repository_owner }}/${{ github.event.repository.name }}/${{ env.IMAGE }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
workdir: ${{ env.FOLDER }}
tags: "${{ env.TAGS }}"
dockerfile: ${{ env.DOCKERFILE }}
buildargs: BRANCH,VERSION,BUILDNUMBER,GITSHA1
no_push: true
# TODO: need publish permissions for ghcr.io
# this will publish to github container registry
#- name: Publish to GitHub
# if: github.event_name != 'pull_request' && github.repository == env.MAIN_REPO
# uses: elgohr/Publish-Docker-Github-Action@2.22
# env:
# BRANCH: ${{ env.GITHUB_BRANCH }}
# VERSION: ${{ env.VERSION }}
# BUILDNUMBER: ${{ github.run_number }}
# GITSHA1: ${{ github.sha }}
# with:
# registry: ghcr.io
# name: ${{ github.repository_owner }}/${{ matrix.IMAGE }}
# username: ${{ secrets.GHCR_USERNAME }}
# password: ${{ secrets.GHCR_PASSWORD }}
# context: ${{ matrix.FOLDER }}
# tags: "${{ env.TAGS }}"
# buildargs: BRANCH,VERSION,BUILDNUMBER,GITSHA1
# this will publish to dockerhub
- name: Publish to Docker Hub
if: github.event_name != 'pull_request' && github.repository == env.MAIN_REPO
uses: elgohr/Publish-Docker-Github-Action@2.22
env:
BRANCH: ${{ env.GITHUB_BRANCH }}
VERSION: ${{ env.VERSION }}
BUILDNUMBER: ${{ github.run_number }}
GITSHA1: ${{ github.sha }}
with:
name: ${{ env.DOCKERHUB_ORG }}/${{ env.IMAGE }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
workdir: ${{ env.FOLDER }}
tags: "${{ env.TAGS }}"
dockerfile: ${{ env.DOCKERFILE }}
buildargs: BRANCH,VERSION,BUILDNUMBER,GITSHA1