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
13 changes: 7 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,16 @@ jobs:
sed -i "0,/<version>${CURRENT_VERSION}<\/version>/s//<version>${NEW_VERSION}<\/version>/" native/health-cli/pom.xml
- name: Commit changes and make a PR
if: ${{ inputs.bal_central_environment == 'PROD' }}
working-directory: fhir-tools
run: |
# Commit changes
git config --global user.name ${{ secrets.BALLERINA_BOT_USERNAME }}
git config --global user.email ${{ secrets.BALLERINA_BOT_EMAIL }}
git add fhir-tools/pom.xml
git add fhir-tools/ballerina/pom.xml
git add fhir-tools/native/fhir-to-bal-lib/pom.xml
git add fhir-tools/native/fhir-to-bal-template/pom.xml
git add fhir-tools/native/health-cli/pom.xml
git add pom.xml
git add ballerina/pom.xml
git add native/fhir-to-bal-lib/pom.xml
git add native/fhir-to-bal-template/pom.xml
git add native/health-cli/pom.xml
git commit -m "[Release Health Tool ${{ steps.increment_patch_version.outputs.CURRENT_VERSION }}] Prepare for next dev cycle"
git push origin ${{ steps.publish_release.outputs.BRANCH_NAME }}

Expand All @@ -153,5 +154,5 @@ jobs:
"https://api.github.com/repos/${{ github.repository }}/pulls")
# Extract the pull request URL from the response
PR_URL=$(echo "$RESPONSE" | jq -r '.html_url')

echo "Pull Request created: $PR_URL"
4 changes: 2 additions & 2 deletions ballerina/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
<parent>
<groupId>io.ballerina</groupId>
<artifactId>health-tools</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>health-tool-ballerina</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>

<properties>
<version.health.cli>${project.version}</version.health.cli>
Expand Down
4 changes: 2 additions & 2 deletions native/cds-bal-template/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
<parent>
<groupId>io.ballerina</groupId>
<artifactId>health-tools</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>cds-bal-template</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions native/fhir-to-bal-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
<parent>
<groupId>io.ballerina</groupId>
<artifactId>health-tools</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>fhir-to-bal-lib</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions native/fhir-to-bal-template/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
<parent>
<groupId>io.ballerina</groupId>
<artifactId>health-tools</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>fhir-to-bal-template</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>

<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions native/health-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
<parent>
<groupId>io.ballerina</groupId>
<artifactId>health-tools</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>health-cli</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<groupId>io.ballerina</groupId>
<artifactId>health-tools</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>

<packaging>pom</packaging>
<modules>
Expand Down
Loading