Fix quarkus gha #3
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: Build Quarkus Image | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
IMAGE_NAME: jlink-quarkus-test-image | |
TAGS: v1 ${{ github.sha }} | |
jobs: | |
build-image: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
repository: ${{ inputs.checkout-repo }} | |
ref: ${{ inputs.checkout-ref }} | |
submodules: true | |
fetch-depth: 0 | |
- name: Setup and Build Quarkus | |
id: build_image_quarkus | |
uses: redhat-actions/s2i-build@v2 | |
with: | |
path_context: 'quarkus-quickstart/getting-started' | |
# This is ubi9/openjdk-17 built from jdk-dev branch (+jmods) | |
builder_image: 'quay.io/jdowland/ubi9-openjdk-17:jdk-dev' | |
image: ${{ env.IMAGE_NAME }} | |
tags: ${{ env.TAGS }} |