File tree 1 file changed +3
-8
lines changed
1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 50
50
# Debugging step to check the value of docker_inspect
51
51
- name : Debug image inspect result
52
52
run : echo "Docker inspect result: ${{ steps.image_check.outputs.docker_inspect }}"
53
-
53
+
54
54
- name : Build and Push backend
55
- if : ${{ steps.image_check.outputs.docker_inspect == 1 }}
55
+ if : ${{ steps.image_check.outputs.docker_inspect == 0 }} # TODO: May need to change this back to 1, but test out 0
56
56
uses : ./.github/actions/build-publish-api
57
57
with :
58
58
docker-registry : ghcr.io
@@ -126,7 +126,7 @@ jobs:
126
126
uses : actions/download-artifact@v3
127
127
with :
128
128
name : ocr-docker-image-artifact # The name of the artifact to download
129
- path : ./downloaded-artifact # Path where the artifact will be saved
129
+ path : ./OCR # Path where the artifact will be saved
130
130
131
131
# Ensure that the downloaded artifact is available
132
132
- name : List files in the downloaded artifact directory (for debugging)
@@ -139,11 +139,6 @@ jobs:
139
139
docker-tag : ${{ inputs.ocr-version }}
140
140
docker-registry : ghcr.io
141
141
api-name : ocr-api
142
- # - name: Download Docker Artifact
143
- # uses: actions/download-artifact@v3
144
- # with:
145
- # name: ocr-docker-image-artifact # The name of the artifact to download
146
- # path: ./OCR/dockerbuild_file.dockerbuild # Path where the artifact is saved
147
142
148
143
deploy-frontend :
149
144
name : Deploy Frontend
You can’t perform that action at this time.
0 commit comments