Skip to content

Commit 27229c0

Browse files
committed
added release workflow pipeline
1 parent a01c0e0 commit 27229c0

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
- name: Checkout repository
2626
uses: actions/checkout@v6
2727

28+
- name: Read BASE IMAGE VERSION file
29+
id: getappversion
30+
run: echo "appversion=$(sed -n 's/^MEDCAT_BASE_IMAGE_VERSION=\(.*\)/\1/p' < medcat_versions.yml)" >> "$GITHUB_OUTPUT"
31+
2832
- name: Extract version from branch
2933
id: getversion
3034
run: |

.github/workflows/semantic-release-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ jobs:
7979

8080
- name: Read BASE IMAGE VERSION file
8181
id: getappversion
82-
run: echo "appversion=$(sed -n 's/^MEDCAT_BASE_IMAGE_VERSION=\(.*\)/\1/p' < medcat_versions.yml)" >> $GITHUB_OUTPUT
83-
82+
run: echo "appversion=$(sed -n 's/^MEDCAT_BASE_IMAGE_VERSION=\(.*\)/\1/p' < medcat_versions.yml)" >> "$GITHUB_OUTPUT"
83+
8484
- name: Read MEDCAT VERSION
8585
id: getversion
8686
run: |
@@ -97,7 +97,7 @@ jobs:
9797

9898
- name: "Set up Cloud SDK"
9999
id: setupsdk
100-
uses: "google-github-actions/setup-gcloud@v1"
100+
uses: "google-github-actions/setup-gcloud@v2"
101101
with:
102102
version: ">= 363.0.0"
103103

0 commit comments

Comments
 (0)