Set up Maven to allow authenticated dependencies #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven (JDK 8) | |
on: | |
push: | |
branches: [ maint-0.9 ] | |
pull_request: | |
branches: [ maint-0.9 ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: '8' | |
cache: 'maven' | |
- name: Set up Maven | |
uses: s4u/[email protected] | |
with: | |
servers: | | |
[{ | |
"id": "ukf-packages", | |
"username": "${{ github.actor }}", | |
"password": "${{ secrets.GITHUB_TOKEN }}" | |
}] | |
- name: Build with Maven | |
run: mvn -B verify checkstyle:checkstyle --file pom.xml | |
- name: Upload jar artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ukf-mda-snapshot | |
path: target/ukf-mda*.jar |