Skip to content

chore(deps): update eclipse-temurin docker tag to v21.0.5_11-jdk #171

chore(deps): update eclipse-temurin docker tag to v21.0.5_11-jdk

chore(deps): update eclipse-temurin docker tag to v21.0.5_11-jdk #171

Workflow file for this run

name: Build k8s-helidon-app
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: "21"
distribution: "temurin"
cache: maven
- name: Format chack
run: |
mvn formatter:validate
- name: Test with Maven
run: |
mvn test
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.PAT }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: |
${{ env.IMAGE }}:latest
env:
IMAGE: ghcr.io/${{ github.repository }}