Skip to content

Commit

Permalink
INFRA-411: Added shared GitHub workflow to build artifacts.
Browse files Browse the repository at this point in the history
  • Loading branch information
kdaud committed Sep 25, 2024
1 parent 23072d8 commit 5ef5c16
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 27 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build and Publish

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
strategy:
matrix:
java: [ '8', '11']
uses: mekomsolutions/shared-github-workflow/.github/workflows/maven-build-test.yml@main
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.Java }}
maven-phase: "install"
secrets:
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
27 changes: 0 additions & 27 deletions .github/workflows/maven.yml

This file was deleted.

0 comments on commit 5ef5c16

Please sign in to comment.