Updated gradle props to release a new version 0.12.4 (#36) #21
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: push to master request build workflow | |
| # This should be a merge from another branch not direct push | |
| on: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout code | |
| uses: actions/checkout@v2 | |
| with: | |
| # bring in all history because the gradle versions plugin needs to "walk back" to the closest ancestor tag | |
| fetch-depth: 0 | |
| - name: Set up JDK 1.8 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 1.8 | |
| - name: Build with Gradle | |
| # add --info or --debug below for more details when trying to understand issues | |
| run: ./gradlew clean build --stacktrace --no-daemon |