BAH-4097 | Add. Bump Version 0.94 -> 1.0 (#42) #17
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 PACS Integration | |
on: | |
push: | |
branches: | |
- master | |
- 'release-*' | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
paths-ignore: | |
- "**.md" | |
- 'package/docker/dcm4chee/**' | |
- 'package/resources/dcm4chee/**' | |
- '.github/workflows/build_publish_dcm4chee.yml' | |
jobs: | |
build-publish-docker: | |
name: Build & Publish Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- 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: Setup Java 8 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "corretto" | |
java-version: "8" | |
- name: Run Unit Tests | |
run: ./mvnw --no-transfer-progress clean test | |
- name: Package | |
run: ./mvnw --no-transfer-progress clean package -DskipTests | |
- 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: . | |
platforms: linux/amd64,linux/arm64 | |
file: package/docker/pacs-integration/Dockerfile | |
push: true | |
tags: bahmni/pacs-integration:${{env.ARTIFACT_VERSION}},bahmni/pacs-integration:latest |