fix csrg reader #124
This file contains hidden or 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 Snapshot | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'feature/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| cache: 'gradle' | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build | |
| run: ./gradlew build | |
| - name: Publish | |
| run: ./gradlew publish -Pversion_snapshot -Pmvn.user=${{ secrets.MAVEN_USER }} -Pmvn.key=${{ secrets.MAVEN_TOKEN }} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: Unimined Snapshot Artifacts | |
| path: ./build/libs/ | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: CLI Snapshot Artifacts | |
| path: ./cli/build/libs/ |