Bonus also updated to Spring Boot 3.1.5 #35
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 and Publish Native Docker Images for Bonus Microservice | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-bonus-native: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Build native bonus microservices with Maven | |
run: cd microservice-istio-bonus && mvn -B spring-boot:build-image -Pnative | |
- name: Log into registry | |
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | |
- name: Push image for native microservice bonus | |
run: | | |
IMAGE_PREFIX=${{ secrets.DOCKER_USERNAME }} | |
docker tag microservice-istio-bonus:0.0.1-SNAPSHOT $IMAGE_PREFIX/microservice-istio-bonus-native:1 | |
docker push $IMAGE_PREFIX/microservice-istio-bonus-native:1 | |