Skip to content

add args for building docker image #4

add args for building docker image

add args for building docker image #4

Workflow file for this run

name: Build libra-data and dlu-watcher docker image
on:
push:
jobs:
build-libra:
env:
IMAGE_TAG: 1.8
runs-on:
ubuntu-latest
steps:
- name: Get branch names
id: branch-names
uses: tj-actions/branch-names@v8
- name: Get current branch name
if: steps.branch-names.outputs.is_default == 'false'
run: |
echo "Running on branch: ${{ steps.branch-names.outputs.current_branch }}"
- name: Checkout project sources
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
username: ${{ secrets.ENV_DOCKER_USER }}
password: ${{ secrets.ENV_DOCKER_PASS }}
- name: Build and push docker image for develop branch
if: steps.branch-names.outputs.current_branch == 'develop'
run: |
docker build -t "kingstonduo/data-management:$IMAGE_TAG" .
docker build -t "kingstonduo/dlu-watcher:$IMAGE_TAG" -f DluWatcher .
docker push "kingstonduo/data-management:$IMAGE_TAG"
docker push "kingstonduo/dlu-watcher:$IMAGE_TAG"
- name: Build and push to docker image for non develop branch
if: steps.branch-names.outputs.current_branch != 'develop'
run: |
docker build -t "kingstonduo/data-management:${{ steps.branch-names.outputs.current_branch }}" .
docker build -t "kingstonduo/dlu-watcher:${{steps.branch-names.outputs.current_branch}}" -f DluWatcher .
docker push "kingstonduo/data-management:${{ steps.branch-names.outputs.current_branch }}"
docker push "kingstonduo/dlu-watcher:${{ steps.branch-names.outputs.current_branch }}"