From 26d546e229f97262166e8fe38404f0d68f2918e8 Mon Sep 17 00:00:00 2001 From: Quentin Legot Date: Tue, 13 Jun 2023 21:40:11 +0200 Subject: [PATCH] log message to try to file runner --- .gitea/workflows/test.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 50170d3..2b00813 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -10,6 +10,9 @@ on: pull_request_target: branches: [ master, dev ] +env: + REPO_USERNAME: ${{ secrets.REPO_USERNAME }} + REPO_PASSWORD: ${{ secrets.REPO_PASSWORD }} jobs: build: @@ -30,17 +33,11 @@ jobs: distribution: 'oracle' - name: make gradle wrapper executable if: ${{ runner.os != 'Windows' }} - env: - REPO_USERNAME: ${{ secrets.REPO_USERNAME }} - REPO_PASSWORD: ${{ secrets.REPO_PASSWORD }} run: | chmod +x ./gradlew touch local.properties echo $REPO_USERNAME - name: build - env: - REPO_USERNAME: ${{ secrets.REPO_USERNAME }} - REPO_PASSWORD: ${{ secrets.REPO_PASSWORD }} run: ./gradlew build --no-daemon --max-workers 1 #- name: test # run: ./gradlew test --no-daemon