#007 - adjusts on workflow #19
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: Java CI with Gradle | |
on: | |
push: | |
branches: | |
- main | |
- 'feature/**' | |
- 'bugfix/**' | |
pull_request: | |
branches: | |
- main | |
- 'feature/**' | |
- 'bugfix/**' | |
env: | |
IMAGE_NAME: ${{ github.repository }} | |
JAR_FILE: application.jar | |
jobs: | |
tests: | |
name: Tests Runner | |
runs-on: ubuntu-latest | |
steps: | |
- name: Source Code Checkout | |
uses: actions/checkout@v2 | |
- name: JDK Configure | |
uses: actions/setup-java@v2 | |
with: | |
java-version: "17" | |
distribution: "temurin" | |
- name: Run application tests | |
run: ./gradlew test | |
build: | |
name: Build Runner | |
needs: tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 | |
- name: Build with Gradle Wrapper | |
run: ./gradlew clean build -x test | |
- name: Build and push Docker image | |
run: | | |
docker build -t ${{ github.repository }}:${{ github.sha }} . | |
docker login -u ${{ secrets.DOCKERHUB_USERNAME}} -p ${{ secrets.DOCKERHUB_TOKEN}} | |
docker push ${{ github.repository }}:${{ github.sha }} |