Publish SpringBatch Football images #2
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
# This workflow will clone and build another Java project with Maven, and build and push Docker images to the GitHubs container registry | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
# https://docs.github.com/actions/use-cases-and-examples/publishing-packages/publishing-docker-images | |
name: Publish SpringBatch Football images | |
on: | |
workflow_dispatch: | |
inputs: | |
image_tag_version: | |
description: 'The image tag version of Spring batch football, default is the github run id + run_attempt' | |
defaults: | |
run: | |
shell: bash | |
working-directory: spring-batch-football | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_INFIX: ${{ github.repository_owner }}/javaaccelerator | |
IMAGE_NAME: spring-batch-football | |
TAG_VERSION: ${{ inputs.image_tag_version != '' && inputs.image_tag_version || format('{0}{1}', github.run_id, github.run_attempt) }} | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
attestations: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: | | |
cat Dockerfile | |
mvn -B clean package --file pom.xml -DskipTests | |
- name: Log in to the Container registry | |
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) | |
id: meta-image | |
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 | |
with: | |
images: | | |
${{ env.REGISTRY }}/${{ env.IMAGE_INFIX }}/${{ env.IMAGE_NAME }} | |
tags: | | |
type=raw,value=latest | |
type=raw,value=${{ env.TAG_VERSION }} | |
- name: Build and push image | |
id: push-image | |
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 | |
with: | |
context: spring-batch-football/ | |
file: spring-batch-football/Dockerfile | |
push: true | |
tags: ${{ steps.meta-image.outputs.tags }} |