diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml index 3a9cf059..dd864ca3 100644 --- a/.github/workflows/build-docker.yml +++ b/.github/workflows/build-docker.yml @@ -1,25 +1,18 @@ -name: Build and Publish +name: Build Docker on: - # run it on push to the default repository branch push: branches: [master,deploy/release,deploy/force-release] - # run it during pull request - pull_request: jobs: - # define job to build and publish docker image build-and-push-docker-image: - name: Build Docker image and push to repositories - # run only when code is compiling and tests are passing + name: Build image and push to DockerHub runs-on: ubuntu-latest - # steps to perform in job steps: - name: Checkout code uses: actions/checkout@v2 - - # setup Docker buld action + - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v1 @@ -40,9 +33,7 @@ jobs: - name: Build image and push to Docker Hub and GitHub Container Registry uses: docker/build-push-action@v2 with: - # relative path to the place where source code with Dockerfile is located context: . - # Note: tags has to be all lower-case tags: | jaedb/iris:master # build on feature branches, push only on master branch