Skip to content

Add a patient without a phone number, overdue and returned #138

Add a patient without a phone number, overdue and returned

Add a patient without a phone number, overdue and returned #138

Workflow file for this run

name: Build and publish docker image
on:
push:
branches:
- '**' # matches every branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'zulu'
cache: 'maven'
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{secrets.DOCKERHUB_SIMPLEDOTORG_USERNAME}}
password: ${{secrets.DOCKERHUB_SIMPLEDOTORG_ACCESS_TOCKEN}}
- uses: stCarolas/[email protected]
with:
maven-version: 3.9.6
- name: docker-compose workaround
working-directory: rtsl_util
run: echo "docker compose \"\$@\"" > $HOME/docker-compose ; chmod 777 $HOME/docker-compose ; echo "$HOME/" >> $GITHUB_PATH
- name: Clean branch name
run: |
BRANCH_NAME=${{ github.ref_name }}
CLEAN_BRANCH_NAME=$(echo $BRANCH_NAME | sed 's/[\/_]/-/g')
echo "Cleaned branch name: $CLEAN_BRANCH_NAME"
echo CLEAN_BRANCH_NAME=$CLEAN_BRANCH_NAME >> $GITHUB_ENV
- name: Sets up version
working-directory: rtsl_util
run: mvn versions:set -DnewVersion=${{ env.CLEAN_BRANCH_NAME }}.${{github.run_number}}
- name: Builds Artifacts and Images
working-directory: rtsl_util
run: mvn clean install
- name: Lists all docker images
working-directory: rtsl_util
run: docker image list
- name: Publish Images
working-directory: rtsl_util
run: docker push simpledotorg/prometheusdbexporter:${{ env.CLEAN_BRANCH_NAME }}.${{github.run_number}}
- name: Archive Dhis2TestTool jar file
uses: actions/upload-artifact@v4
with:
name: Dhis2CucumberTestTool-${{ env.CLEAN_BRANCH_NAME }}.${{github.run_number}}.jar
path: rtsl_util/CommonUtils/Dhis2CucumberTestTool/target/Dhis2CucumberTestTool-${{ env.CLEAN_BRANCH_NAME }}.${{github.run_number}}.jar
- run: find . -name "*.jar"