Skip to content

Build Workflow -- feature/IAT-000-GitHub-Actions #19

Build Workflow -- feature/IAT-000-GitHub-Actions

Build Workflow -- feature/IAT-000-GitHub-Actions #19

Workflow file for this run

name: Build Workflow
run-name: 'Build Workflow -- ${{ github.head_ref || github.ref_name }}'
on:
push:
pull_request:
env:
BRANCH_NAME: ${{github.ref_name}}
jobs:
build-job:
name: Build Job
runs-on: ubuntu-24.04
if: github.repository_owner == 'ikmdev'
steps:
- uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'adopt'
- name: Build IKMDEV Code
uses: ikmdev/maven-clean-install-build-action@main
with:
branch_name: ${{env.BRANCH_NAME}}