From 7ab20bd93eb978bd268ab0c71f11f14e64ab78c7 Mon Sep 17 00:00:00 2001 From: Harrishan Date: Fri, 18 Oct 2024 02:51:34 +0200 Subject: [PATCH] open the workflow file and add the step to load the local.properties file --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index acc3bec8d..5872c910e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,8 +1,4 @@ name: CI - Test Runner - - # load the local.properties file from the secrets - - name: Get local.properties from secrets - run: echo "${{secrets.LOCAL_PROPERTIES }}" > $GITHUB_WORKSPACE/local.properties # Run the workflow when commits are pushed on main or when a PR is modified on: @@ -25,6 +21,11 @@ jobs: runs-on: ubuntu-latest steps: + + # load the local.properties file from the secrets + - name: Get local.properties from secrets + - run: echo "${{secrets.LOCAL_PROPERTIES }}" > $GITHUB_WORKSPACE/local.properties + # First step : Checkout the repository on the runner - name: Checkout uses: actions/checkout@v4