-
Notifications
You must be signed in to change notification settings - Fork 84
45 lines (42 loc) · 1.4 KB
/
build_publish_openelis_demoDB.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Build and Publish OpenELIS Demo DB
on:
push:
branches:
- master
- 'release-*'
tags:
- '[0-9]+.[0-9]+.[0-9]+'
paths:
- '.github/workflows/build_publish_openelis_demoDB.yml'
- 'package/docker/demoDB/**'
- 'scripts/database/**'
repository_dispatch:
types: ['bahmni-scripts-trigger']
jobs:
docker-build-publish:
name: Build & Publish OpenELIS Demo DB 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: 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/demoDB/Dockerfile
push: true
tags: bahmni/openelis-db:demo-${{env.ARTIFACT_VERSION}},bahmni/openelis-db:demo-latest