Few more Maven changes running docker images #18
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: ci | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- | |
name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: maven | |
- name: clean spotify maven | |
run: mvn spotless:apply | |
- | |
name: Build maven | |
run: mvn -batch-mode -DskipTests=true --update-snapshots verify | |
- | |
name: Build and push | |
run: | | |
mvn package jib:dockerBuild -DskipTests | |
docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.OCKERHUB_TOKEN }} | |
docker push travelhelper0h/sathishproject-config-server:latest |