use set for the StemPrunableNodeRegistry #242
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 and Publish | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build-and-publish: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v3 | |
| - name: Set up Java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: adopt | |
| java-version: 21 | |
| cache: gradle | |
| - name: spotless | |
| run: ./gradlew --no-daemon --parallel clean spotlessCheck | |
| - name: Build with Gradle | |
| run: ./gradlew build | |
| - name: Publish to Artifactory | |
| uses: gradle/gradle-build-action@v2 | |
| if: contains('refs/heads/release-', github.ref) || github.ref == 'refs/heads/main' | |
| env: | |
| ARTIFACTORY_USER: ${{ secrets.BESU_ARTIFACTORY_USER }} | |
| ARTIFACTORY_KEY: ${{ secrets.BESU_ARTIFACTORY_TOKEN }} | |
| with: | |
| arguments: --no-daemon --parallel publish artifactoryPublish --scan |