Bump org.webjars:bootstrap from 3.3.6 to 3.4.1 in /microservice-consul-demo/microservice-consul-demo-catalog #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Docker Images | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Build microservices with Maven | |
run: cd microservice-consul-demo && ./mvnw -B package --file pom.xml | |
- name: Create Docker images | |
run: cd docker && docker-compose build | |
- name: Create Docker images Zipkin | |
run: cd docker && docker-compose -f docker-compose-zipkin.yml build | |
- name: Create Docker images Elastic | |
run: cd docker && docker-compose -f docker-compose-elastic.yml build | |
- name: Create Docker images Prometheus | |
run: cd docker && docker-compose -f docker-compose-prometheus.yml build |