Skip to content

Build Native

Build Native #3

# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java#apache-maven-with-a-settings-path
name: Build Native
on:
workflow_dispatch:
inputs:
push-to-registry:
description: 'Push container to GH registry'
default: false
type: boolean
jobs:
build:
runs-on: ubuntu-latest
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 Automatiko Approval Tasks
run: mvn -B package -Pcontainer-native --file pom.xml
- name: login ghcr.io
if: inputs.push-to-registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
logout: true
- name: Build Automatiko Approval Tasks
if: inputs.push-to-registry
run: mvn -B package -Pcontainer-native -Dquarkus.container-image.push=true -Dquarkus.container-image.registry=ghcr.io -Dquarkus.container-image.group=automatiko-io --file pom.xml