Skip to content

Commit

Permalink
open the workflow file and add the step to load the local.properties …
Browse files Browse the repository at this point in the history
…file
  • Loading branch information
Harrish92 committed Oct 18, 2024
1 parent 74adb50 commit 7ab20bd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 7ab20bd

Please sign in to comment.