From d20aaf54ed0843491a2329a4c771b2e84c419943 Mon Sep 17 00:00:00 2001 From: Lars Gohr Date: Thu, 22 Aug 2019 10:03:33 +0200 Subject: [PATCH] Add integration test --- .github/workflows/test_integration.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test_integration.yml diff --git a/.github/workflows/test_integration.yml b/.github/workflows/test_integration.yml new file mode 100644 index 0000000..54fe507 --- /dev/null +++ b/.github/workflows/test_integration.yml @@ -0,0 +1,16 @@ +name: Integration Test +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Login to Registry + run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} + - name: Publish to Registry + uses: elgohr/Publish-Docker-Github-Action@master + with: + args: elgohr/Publish-Docker-Github-Action + snapshot: true + - name: Logout + run: docker logout