-
Notifications
You must be signed in to change notification settings - Fork 29
44 lines (42 loc) · 1.38 KB
/
build_publish_odoo_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
name: Build and Publish Odoo Demo DB
on:
push:
branches:
- master
- 'release-*'
tags:
- '[0-9]+.[0-9]+.[0-9]+'
paths:
- ".github/workflows/build_publish_odoo_demoDB.yml"
- "package/resources/database/**"
- "package/docker/demoDB/**"
repository_dispatch:
types: ["bahmni-scripts-trigger"]
jobs:
docker-build-publish:
name: Docker Build & Publish Odoo Demo DB
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/odoo-10-db:demo-${{env.ARTIFACT_VERSION}},bahmni/odoo-10-db:demo-latest