Fix build config
Some checks failed
/ build (17, ubuntu-latest) (push) Failing after 47s

This commit is contained in:
Quentin Legot 2023-06-13 21:12:34 +02:00
parent cfb953e8dc
commit eceba274d8
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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'