Merge pull request #3 from funfried/release/0.x #28
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: Windows Build | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
cache: maven | |
- name: Set up Maven 3.9.x | |
uses: s4u/[email protected] | |
with: | |
maven-version: '3.9.5' | |
- name: Build with Maven | |
run: mvn -s .ci.settings.xml --no-transfer-progress clean package site | |
env: | |
MAVEN_OPTS: -Xms128m -Xmx512m | |
gh_username: ${{ secrets.GH_USERNAME }} | |
gh_token: ${{ secrets.GH_TOKEN }} | |
sonatype_username: ${{ secrets.SONATYPE_USERNAME }} | |
sonatype_password: ${{ secrets.SONATYPE_PASSWORD }} | |
repoToken: ${{ secrets.GH_REPOTOKEN }} | |
signing_keypass: ${{ secrets.GPG_PASSPHRASE }} | |
skipRemoteStaging: ${{ secrets.SKIP_REMOTE_STAGING }} | |
nvd_api_key: ${{ secrets.NVD_API_KEY }} |