Skip to content

release a new tag (#33) #18

release a new tag (#33)

release a new tag (#33) #18

Workflow file for this run

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