Skip to content

Commit

Permalink
Merge pull request #1 from OmOmofonmwan/feature/IAT-000-Build-WF
Browse files Browse the repository at this point in the history
Added Build WF
  • Loading branch information
OmOmofonmwan authored Aug 13, 2024
2 parents 763b2fe + 6631c79 commit 67d735b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build-workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build Workflow

run-name: 'Build Workflow -- ${{ github.head_ref || github.ref_name }}'

on:
push:
pull_request:

env:
MAVEN_SETTING: '/home/ec2-user/maven/.m2/settings.xml'
BRANCH_NAME: ${{github.ref_name}}

jobs:
build-job:
name: Build Job
runs-on: self-hosted
if: github.repository_owner == 'ikmdev'
steps:
- name: Build IKMDEV Code
uses: ikmdev/maven-clean-install-build-action@main
with:
branch_name: ${{env.BRANCH_NAME}}

0 comments on commit 67d735b

Please sign in to comment.