Don't run chunker for perf and add dictionary cleaning transform #64
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 | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 13 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 13 | |
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml | |
settings-path: ${{ github.workspace }}/githubdeploysettings # location for the settings.xml file | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml -s settings.xml -P build-deploy | |
env: | |
SECRET_ACTOR: ${{ secrets.SECRET_ACTOR }} | |
SECRET_TOKEN: ${{ secrets.SECRET_TOKEN }} |