Skip to content

Commit 45fa780

Browse files
author
marycrawford
committed
merge main change
1 parent 50ae0e5 commit 45fa780

File tree

1 file changed

+39
-15
lines changed

1 file changed

+39
-15
lines changed

.github/workflows/deploy-dev.yml

+39-15
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ on:
1010
options:
1111
- dev
1212
- 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
1919

2020
permissions:
2121
contents: read
@@ -29,15 +29,25 @@ jobs:
2929
runs-on: ubuntu-latest
3030
outputs:
3131
docker_inspect: ${{ steps.image_check.outputs.docker_inspect }}
32+
docker_tag: ${{ steps.set_tag.outputs.docker_tag }}
3233
steps:
3334
- uses: actions/checkout@v4
3435
- name: Lowercase the repo name
3536
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
3646
- name: Check if image exists
3747
id: image_check
3848
run: |
3949
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 $?
4151
)" >> $GITHUB_OUTPUT
4252
- name: Build and Push the middleware
4353
if: ${{ steps.image_check.outputs.docker_inspect == 1 }}
@@ -46,25 +56,35 @@ jobs:
4656
docker-registry: ghcr.io
4757
docker-pw: ${{ secrets.GITHUB_TOKEN }}
4858
docker-username: ${{ github.actor }}
49-
docker-tag: ${{ inputs.middleware-version }}
59+
docker-tag: ${{ steps.set_tag.outputs.docker_tag }}
5060
dockerfile-path: ./backend/Dockerfile
5161
docker-context-path: ./backend/
52-
api-name: middleware-api
62+
api-name: middleware
5363

5464
build-publish-ocr:
5565
name: Build and Publish OCR
5666
runs-on: ubuntu-latest
5767
outputs:
5868
docker_inspect: ${{ steps.image_check.outputs.docker_inspect }}
69+
docker_tag: ${{ steps.set_tag.outputs.docker_tag }}
5970
steps:
6071
- uses: actions/checkout@v4
6172
- name: Lowercase the repo name
6273
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
6383
- name: Check if image exists
6484
id: image_check
6585
run: |
6686
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 $?
6888
)" >> $GITHUB_OUTPUT
6989
- name: Build and Push the OCR
7090
if: ${{ steps.image_check.outputs.docker_inspect == 1 }}
@@ -73,10 +93,10 @@ jobs:
7393
docker-registry: ghcr.io
7494
docker-pw: ${{ secrets.GITHUB_TOKEN }}
7595
docker-username: ${{ github.actor }}
76-
docker-tag: ${{ inputs.ocr-version }}
96+
docker-tag: ${{ steps.set_tag.outputs.docker_tag }}
7797
dockerfile-path: ./OCR/Dockerfile
7898
docker-context-path: ./OCR/
79-
api-name: ocr-api
99+
api-name: ocr
80100

81101
build-frontend:
82102
name: Build Frontend
@@ -129,9 +149,9 @@ jobs:
129149
uses: ./.github/actions/deploy-api
130150
with:
131151
deploy-env: ${{ inputs.deploy-env }}
132-
docker-tag: ${{ inputs.middleware-version }}
152+
docker-tag: ${{ needs.build-publish-middleware.outputs.docker_tag }}
133153
docker-registry: ghcr.io
134-
api-name: middleware-api
154+
api-name: middleware
135155

136156
deploy-ocr:
137157
name: Deploy OCR
@@ -149,11 +169,15 @@ jobs:
149169
uses: ./.github/actions/deploy-api
150170
with:
151171
deploy-env: ${{ inputs.deploy-env }}
152-
docker-tag: ${{ inputs.ocr-version }}
172+
docker-tag: ${{ needs.build-publish-ocr.outputs.docker_tag }}
153173
docker-registry: ghcr.io
174+
<<<<<<< HEAD
154175
api-name: ocr-api
155176
- name: Download all workflow run artifacts
156177
uses: actions/download-artifact@v4
178+
=======
179+
api-name: ocr
180+
>>>>>>> 68d5be6b460a530cff13a85e36797c9f25d82da1
157181

158182
deploy-frontend:
159183
name: Deploy Frontend

0 commit comments

Comments
 (0)