mirror of
https://github.com/valitydev/library-parent-pom.git
synced 2024-11-06 02:45:17 +00:00
42aae45ce4
* Cleanup * GH actions added * Developers restored * Fetch token removed * Upd hosts + steps * Profile fix * Sign artifact * gpg fix * cleanup * fix gpg * Profile fix * Cleanup * Deployment condition fix * Feedback edits
19 lines
383 B
YAML
19 lines
383 B
YAML
name: Build Artifact
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Maven Central Repository
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
java-version: '15'
|
|
distribution: 'adopt'
|
|
- name: Build package
|
|
run: mvn --batch-mode clean compile |