Skip to content

Commit 8f8bbf6

Browse files
authored
fix(GAT-1234): Release 1.16.1 (#27)
2 parents 57b19b5 + 1726b1f commit 8f8bbf6

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/dev_deployment.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
run: echo "appversion=$(sed -n 's/^MEDCAT_BASE_IMAGE_VERSION=\(.*\)/\1/p' < medcat_versions.yml)" >> $GITHUB_OUTPUT
3232

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

96-
- name: Read VERSION file
97+
- name: Read MEDCAT VERSION
9798
id: getversion
98-
run: echo "version=$(sed -n 's/^MEDCAT_TAG=\(.*\)/\1/p' < medcat_versions.yml)" >> $GITHUB_OUTPUT
99+
run: |
100+
sed -n 's/^appVersion:\(.*\)/\1/p' < chart/gateway-medcat/Chart.yaml > version
101+
echo "version=$(sed '/.*\"\(.*\)\".*/ s//\1/g' version)" >> $GITHUB_OUTPUT
99102
100103
- name: Deploy to Cloud Run
101104
uses: actions-hub/gcloud@master

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG MEDCAT_BASE_IMAGE_VERSION=0.5.1
1+
ARG MEDCAT_BASE_IMAGE_VERSION=medcat-v0.13.5
22
FROM cogstacksystems/medcat-service:$MEDCAT_BASE_IMAGE_VERSION
33

44
ENV CRYPTOGRAPHY_DONT_BUILD_RUST=1

medcat_versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MEDCAT_BASE_IMAGE_VERSION=0.5.1
1+
MEDCAT_BASE_IMAGE_VERSION=medcat-v0.13.5

0 commit comments

Comments
 (0)