Update build-docker.yml

This commit is contained in:
James Barnsley
2021-10-24 12:09:34 +13:00
committed by GitHub
parent fe500b80f5
commit 6571595fca

View File

@ -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