Add ci for github action build and publish image

This commit is contained in:
Sambo Chea 2021-03-07 12:52:22 +07:00
parent 8d8fe6e76f
commit 1c8781f552

19
.github/workflows/gradle.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: CI
on:
push:
branches:
- master
jobs:
build:
name: Build and Publish Docker Image
runs-on: ubuntu-latest
env:
REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
steps:
- uses: actions/checkout@v1
- name: Sign-in to Private Registry "${REGISTRY}"
run: docker login $REGISTRY -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
- name: Building Docker Image
run: /bin/bash scripts/build.sh