-
Notifications
You must be signed in to change notification settings - Fork 14
42 lines (37 loc) · 1.29 KB
/
maven-publish-arm64.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# 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 arm64
on:
workflow_dispatch:
inputs:
push-to-registry:
description: 'Push container to GH registry'
default: false
type: boolean
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: 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 Automatiko Approval Tasks
run: mvn -B package -Pcontainer-arm64 --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-arm64 -Dquarkus.container-image.push=true -Dquarkus.container-image.registry=ghcr.io -Dquarkus.container-image.group=automatiko-io --file pom.xml