GHA to update jib image with the latest version #129
Workflow file for this run
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: Docker Verify | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
docker: | |
name: Docker Verify | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 21 | |
distribution: 'corretto' | |
- name: Build Docker image | |
run: ./gradlew jibDockerBuild |