Skip to content

Warning: This job uses deprecated functionality from the 'gradle/grad… #74

Warning: This job uses deprecated functionality from the 'gradle/grad…

Warning: This job uses deprecated functionality from the 'gradle/grad… #74

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: corretto
java-version: 21
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: 8.7
- name: Cache SonarCloud packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build and analyze
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: gradle build jacocoTestReport sonar --info
- name: Login to Docker Hub
run: docker login -u a002k -p ${{ secrets.DOCKER_PASSWORD }}
- name: Build and tag the Docker image
run: |
docker build -t a002k/simple-app:latest .
- name: Push the Docker image
run: docker push a002k/simple-app --all-tags