Resolves JOIN issue by excluding the common 'notes' column #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish bahmni-mart Image and Helm Chart | |
on: | |
push: | |
branches: | |
- 1.0.0-ipd | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
Trivy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Trivy Scan | |
run: ./.github/trivy_scan.sh | |
build-publish-docker-helm: | |
name: Build & Publish Docker Image & Helm Chart | |
runs-on: ubuntu-latest | |
env: | |
HELM_CHART_PATH: package/helm | |
needs: Trivy | |
steps: | |
- name: Checkout project sources | |
uses: actions/checkout@v2 | |
- name: Set env.ARTIFACT_VERSION | |
run: | | |
wget -q https://raw.githubusercontent.com/Bahmni/bahmni-infra-utils/main/setArtifactVersion.sh && chmod +x setArtifactVersion.sh | |
./setArtifactVersion.sh | |
rm setArtifactVersion.sh | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'corretto' | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
- name: Docker Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
file: package/docker/Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
no-cache: true | |
push: true | |
tags: bahmni/bahmni-mart:${{env.ARTIFACT_VERSION}},bahmni/bahmni-mart:latest | |
- name: Helm - Update Version and Image Tag | |
run: | | |
yq --inplace '.image.tag = "${{ env.ARTIFACT_VERSION }}"' $HELM_CHART_PATH/values.yaml | |
yq --inplace '.version = "${{ env.ARTIFACT_VERSION }}"' $HELM_CHART_PATH/Chart.yaml | |
- name: Helm Lint | |
run: helm lint $HELM_CHART_PATH | |
- name: Helm Package | |
run: helm package $HELM_CHART_PATH | |
- name: Helm - Checkout Charts Repository | |
uses: actions/checkout@v2 | |
with: | |
repository: Bahmni/helm-charts | |
ref: gh-pages | |
path: helm-charts | |
persist-credentials: false | |
- name: Helm - Copy chart | |
run: mkdir -p helm-charts/bahmni-mart/ && cp bahmni-mart-${{ env.ARTIFACT_VERSION }}.tgz helm-charts/bahmni-mart/ | |
- name: Helm - Index | |
working-directory: helm-charts/ | |
run: helm repo index --merge index.yaml --url https://bahmni.github.io/helm-charts/ . | |
- name: Helm - Publish Chart | |
working-directory: helm-charts/ | |
run: | | |
git config user.name ${{ secrets.BAHMNI_USERNAME}} | |
git config user.email ${{ secrets.BAHMNI_EMAIL}} | |
git add . | |
git commit -m "Release of bahmni-mart-${{ env.ARTIFACT_VERSION }}" | |
git push 'https://${{ secrets.BAHMNI_USERNAME}}:${{ secrets.BAHMNI_PAT}}@github.com/bahmni/helm-charts.git' gh-pages |