Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/dev_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
run: echo "appversion=$(sed -n 's/^MEDCAT_BASE_IMAGE_VERSION=\(.*\)/\1/p' < medcat_versions.yml)" >> $GITHUB_OUTPUT

- name: Read MEDCAT VERSION
id: getversion
run: |
sed -n 's/^appVersion:\(.*\)/\1/p' < chart/gateway-medcat/Chart.yaml > version
echo "version=$(sed '/.*\"\(.*\)\".*/ s//\1/g' version)" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -93,9 +94,11 @@ jobs:
workload_identity_provider: "${{ secrets.WIF_PROVIDER }}"
service_account: "${{ secrets.WIF_SERVICE_ACCOUNT }}"

- name: Read VERSION file
- name: Read MEDCAT VERSION
id: getversion
run: echo "version=$(sed -n 's/^MEDCAT_TAG=\(.*\)/\1/p' < medcat_versions.yml)" >> $GITHUB_OUTPUT
run: |
sed -n 's/^appVersion:\(.*\)/\1/p' < chart/gateway-medcat/Chart.yaml > version
echo "version=$(sed '/.*\"\(.*\)\".*/ s//\1/g' version)" >> $GITHUB_OUTPUT

- name: Deploy to Cloud Run
uses: actions-hub/gcloud@master
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG MEDCAT_BASE_IMAGE_VERSION=0.5.1
ARG MEDCAT_BASE_IMAGE_VERSION=medcat-v0.13.5
FROM cogstacksystems/medcat-service:$MEDCAT_BASE_IMAGE_VERSION

ENV CRYPTOGRAPHY_DONT_BUILD_RUST=1
Expand Down
2 changes: 1 addition & 1 deletion medcat_versions.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MEDCAT_BASE_IMAGE_VERSION=0.5.1
MEDCAT_BASE_IMAGE_VERSION=medcat-v0.13.5
Loading