Prefer Class-File API on Java 24 or above #1022
Workflow file for this run
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 | |
| on: | |
| pull_request: {} | |
| workflow_dispatch: {} | |
| push: | |
| branches: | |
| - 'trunk' | |
| tags: | |
| - '**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version-file: .github/workflows/.java-version | |
| - uses: gradle/actions/setup-gradle@v5 | |
| - run: ./gradlew build | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: diffuse-cli.zip | |
| path: diffuse/build/distributions/diffuse-*.zip | |
| if-no-files-found: error | |
| - run: ./gradlew publish | |
| if: ${{ github.ref == 'refs/heads/trunk' && github.repository == 'JakeWharton/diffuse' }} | |
| env: | |
| ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_CENTRAL_USERNAME }} | |
| ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_CENTRAL_PASSWORD }} | |
| - name: Extract release notes | |
| id: release_notes | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: ffurrer2/extract-release-notes@v3 | |
| - name: Create Release | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| body: ${{ steps.release_notes.outputs.release_notes }} | |
| files: diffuse/build/distributions/diffuse-*.zip | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |