SqlEntityQuery#sum suports Optional type. (#316) #66
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: Publish package to the Nexus Snapshot Repository | |
on: | |
push: | |
branches: | |
- master | |
- release/v0.x | |
jobs: | |
publish-snapshot: | |
runs-on: ubuntu-latest | |
env: | |
TZ: Asia/Tokyo | |
steps: | |
- uses: actions/checkout@v2 | |
- name: 🛠️ Set up JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 8 | |
distribution: 'adopt' | |
cache: 'maven' | |
- name: Publish Snapshot Package | |
run: mvn --batch-mode --no-transfer-progress --settings ./settings/.maven.settings.xml -DskipTests=true clean deploy | |
env: | |
OSSRH_USER: ${{ secrets.OSSRH_USER }} | |
OSSRH_PASS: ${{ secrets.OSSRH_PASS }} |