ORC-1553: Row grouping reads should be skipped when the statistics ar… #1462
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 Snapshot | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish-snapshot: | |
if: github.repository == 'apache/orc' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: 17 | |
- name: Publish snapshot | |
env: | |
ASF_USERNAME: ${{ secrets.NEXUS_USER }} | |
ASF_PASSWORD: ${{ secrets.NEXUS_PW }} | |
run: | | |
cd java | |
echo "<settings><servers><server><id>apache.snapshots.https</id><username>$ASF_USERNAME</username><password>$ASF_PASSWORD</password></server></servers></settings>" > settings.xml | |
./mvnw --settings settings.xml -nsu -ntp -DskipTests deploy |