From bce5d3010c7efeac2364fcbb17084021fe987432 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Tue, 12 Oct 2021 21:08:39 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20Docker=20CI=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..89d4e49 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: Docker Image CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Publish to Registry + uses: elgohr/Publish-Docker-Github-Action@master + with: + name: frishi/threetwo-import-service + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }}