Merge pull request #114 from nls-jajuko/1.5.0-geotools #61
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
name: Build and deploy | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Adopt JDK 11 for x64 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: 'adopt' | |
architecture: x64 | |
- name: Build with Maven | |
run: mvn --batch-mode verify -P release | |
env: | |
SIGN_KEY: ${{ secrets.TEST_KEY }} | |
SIGN_KEY_PASS: ${{ secrets.TEST_KEY_PASS }} |