From e0d5f2ab551231a6d0e55b3286cf1321ac00108b Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Sun, 28 Mar 2021 20:48:59 +0700 Subject: [PATCH] Create starter-docker.yml --- .github/workflows/starter-docker.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/starter-docker.yml diff --git a/.github/workflows/starter-docker.yml b/.github/workflows/starter-docker.yml new file mode 100644 index 0000000..a206c3f --- /dev/null +++ b/.github/workflows/starter-docker.yml @@ -0,0 +1,26 @@ +# This is a basic workflow to help you get started with Actions + +name: CI +on: + push: + branches: + - 'master' + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - + name: Starter Docker + uses: CUBETIQ/starter-docker-actions@v1 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_SECRET }} + - + name: Checkout + uses: actions/checkout@v2 + + - + name: Build and Push from Makefile + run: | + make build