Update rebuild.sh #79
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 libra-data and dlu-watcher docker image | |
on: | |
push: | |
jobs: | |
docker: | |
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@v4 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.ENV_DOCKER_USER }} | |
password: ${{ secrets.ENV_DOCKER_PASS }} | |
- | |
name: Build and push data-management image for develop branch | |
if: steps.branch-names.outputs.current_branch == 'develop' | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./data_management | |
file: ./data_management/Dockerfile | |
push: true | |
tags: | |
"kingstonduo/data-management:${{env.IMAGE_TAG}}" | |
- | |
name: Build and push dlu-watcher image for develop branch | |
if: steps.branch-names.outputs.current_branch == 'develop' | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./data_management | |
push: true | |
file: "./data_management/DluWatcher" | |
tags: | |
"kingstonduo/dlu-watcher:${{env.IMAGE_TAG}}" | |
- | |
name: Build and push data-management image for non develop branch | |
if: steps.branch-names.outputs.current_branch != 'develop' | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./data_management | |
file: "./data_management/Dockerfile" | |
push: true | |
tags: | |
"kingstonduo/data-management:${{steps.branch-names.outputs.current_branch}}" | |
- | |
name: Build and push dlu-watcher image for non develop branch | |
if: steps.branch-names.outputs.current_branch != 'develop' | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./data_management | |
push: true | |
file: "./data_management/DluWatcher" | |
tags: | |
"kingstonduo/dlu-watcher:${{steps.branch-names.outputs.current_branch}}" |