This commit is contained in:
parent
cfb953e8dc
commit
eceba274d8
@ -30,7 +30,9 @@ jobs:
|
||||
distribution: 'oracle'
|
||||
- name: make gradle wrapper executable
|
||||
if: ${{ runner.os != 'Windows' }}
|
||||
run: chmod +x ./gradlew
|
||||
run: |
|
||||
chmod +x ./gradlew
|
||||
touch local.properties
|
||||
- name: build
|
||||
run: ./gradlew build --no-daemon --max-workers 1
|
||||
#- name: test
|
||||
|
@ -3,7 +3,7 @@ plugins {
|
||||
}
|
||||
|
||||
Properties local = new Properties()
|
||||
local.load(project.rootProject.file('local.properties').newDataInputStream())
|
||||
local.load(new FileInputStream(rootProject.file("local.properties")))
|
||||
|
||||
allprojects {
|
||||
apply plugin: 'maven-publish'
|
||||
|
Loading…
Reference in New Issue
Block a user