10
10
options :
11
11
- dev
12
12
- demo
13
- ocr-version :
14
- description : ' Create a version for this OCR API image'
15
- required : true
16
- middleware-version :
17
- description : ' Create a version for this middleware API image'
18
- required : true
13
+ ocr-docker-tag :
14
+ description : ' This is optional if you would like to deploy an already published OCR- API image'
15
+ required : false
16
+ middleware-docker-tag :
17
+ description : ' This is optional if you would like to deploy an already published Middleware- API image'
18
+ required : false
19
19
20
20
permissions :
21
21
contents : read
@@ -29,15 +29,25 @@ jobs:
29
29
runs-on : ubuntu-latest
30
30
outputs :
31
31
docker_inspect : ${{ steps.image_check.outputs.docker_inspect }}
32
+ docker_tag : ${{ steps.set_tag.outputs.docker_tag }}
32
33
steps :
33
34
- uses : actions/checkout@v4
34
35
- name : Lowercase the repo name
35
36
run : echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
37
+ - name : Set Middleware Docker tag
38
+ shell : bash
39
+ id : set_tag
40
+ run : |
41
+ USER_INPUT="${{ github.event.inputs.middleware-docker-tag }}"
42
+ echo "docker_tag=$(
43
+ #this gives a new sha as default if dispatch input is empty
44
+ echo ${USER_INPUT:-"${{ github.sha }}"}
45
+ )" >> $GITHUB_OUTPUT
36
46
- name : Check if image exists
37
47
id : image_check
38
48
run : |
39
49
echo "docker_inspect=$(
40
- docker manifest inspect ghcr.io/${{ env.REPO }}-middleware-api :${{ inputs.middleware-version }} > /dev/null ; echo $?
50
+ docker manifest inspect ghcr.io/${{ env.REPO }}-middleware:${{ steps.set_tag.outputs.docker_tag }} > /dev/null ; echo $?
41
51
)" >> $GITHUB_OUTPUT
42
52
- name : Build and Push the middleware
43
53
if : ${{ steps.image_check.outputs.docker_inspect == 1 }}
@@ -46,25 +56,35 @@ jobs:
46
56
docker-registry : ghcr.io
47
57
docker-pw : ${{ secrets.GITHUB_TOKEN }}
48
58
docker-username : ${{ github.actor }}
49
- docker-tag : ${{ inputs.middleware-version }}
59
+ docker-tag : ${{ steps.set_tag.outputs.docker_tag }}
50
60
dockerfile-path : ./backend/Dockerfile
51
61
docker-context-path : ./backend/
52
- api-name : middleware-api
62
+ api-name : middleware
53
63
54
64
build-publish-ocr :
55
65
name : Build and Publish OCR
56
66
runs-on : ubuntu-latest
57
67
outputs :
58
68
docker_inspect : ${{ steps.image_check.outputs.docker_inspect }}
69
+ docker_tag : ${{ steps.set_tag.outputs.docker_tag }}
59
70
steps :
60
71
- uses : actions/checkout@v4
61
72
- name : Lowercase the repo name
62
73
run : echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
74
+ - name : Set OCR Docker tag
75
+ shell : bash
76
+ id : set_tag
77
+ run : |
78
+ USER_INPUT="${{ github.event.inputs.ocr-docker-tag }}"
79
+ echo "docker_tag=$(
80
+ #this gives a new sha as default if dispatch input is empty
81
+ echo ${USER_INPUT:-"${{ github.sha }}"}
82
+ )" >> $GITHUB_OUTPUT
63
83
- name : Check if image exists
64
84
id : image_check
65
85
run : |
66
86
echo "docker_inspect=$(
67
- docker manifest inspect ghcr.io/${{ env.REPO }}-ocr-api :${{ inputs.ocr-version }} > /dev/null ; echo $?
87
+ docker manifest inspect ghcr.io/${{ env.REPO }}-ocr:${{ steps.set_tag.outputs.docker_tag }} > /dev/null ; echo $?
68
88
)" >> $GITHUB_OUTPUT
69
89
- name : Build and Push the OCR
70
90
if : ${{ steps.image_check.outputs.docker_inspect == 1 }}
@@ -73,10 +93,10 @@ jobs:
73
93
docker-registry : ghcr.io
74
94
docker-pw : ${{ secrets.GITHUB_TOKEN }}
75
95
docker-username : ${{ github.actor }}
76
- docker-tag : ${{ inputs.ocr-version }}
96
+ docker-tag : ${{ steps.set_tag.outputs.docker_tag }}
77
97
dockerfile-path : ./OCR/Dockerfile
78
98
docker-context-path : ./OCR/
79
- api-name : ocr-api
99
+ api-name : ocr
80
100
81
101
build-frontend :
82
102
name : Build Frontend
@@ -129,9 +149,9 @@ jobs:
129
149
uses : ./.github/actions/deploy-api
130
150
with :
131
151
deploy-env : ${{ inputs.deploy-env }}
132
- docker-tag : ${{ inputs.middleware-version }}
152
+ docker-tag : ${{ needs.build-publish-middleware.outputs.docker_tag }}
133
153
docker-registry : ghcr.io
134
- api-name : middleware-api
154
+ api-name : middleware
135
155
136
156
deploy-ocr :
137
157
name : Deploy OCR
@@ -149,11 +169,15 @@ jobs:
149
169
uses : ./.github/actions/deploy-api
150
170
with :
151
171
deploy-env : ${{ inputs.deploy-env }}
152
- docker-tag : ${{ inputs.ocr-version }}
172
+ docker-tag : ${{ needs.build-publish-ocr.outputs.docker_tag }}
153
173
docker-registry : ghcr.io
174
+ <<<<<<< HEAD
154
175
api-name : ocr-api
155
176
- name : Download all workflow run artifacts
156
177
uses : actions/download-artifact@v4
178
+ =======
179
+ api-name : ocr
180
+ >>>>>>> 68d5be6b460a530cff13a85e36797c9f25d82da1
157
181
158
182
deploy-frontend :
159
183
name : Deploy Frontend
0 commit comments