Skip to content

Commit 92e9720

Browse files
committed
feat: generate local.properties from example in CI
This change adds a step to the GitHub Actions workflow to generate the `local.properties` file from `local.properties.example` using the `before-ci.sh` script. This ensures that necessary local configurations are available during the CI build process.
1 parent 557b020 commit 92e9720

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/android.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ jobs:
5050
bundle config set path 'vendor/bundle'
5151
bundle install
5252
53+
- name: Generate local.properties from example
54+
run: |
55+
chmod +x ./scripts/before-ci.sh
56+
./scripts/before-ci.sh
57+
5358
- name: Decode Keystore File
5459
run: echo "${{ secrets.KEYSTORE_FILE }}" | base64 -d > "app/${{ env.KEYSTORE_FILE }}"
5560

0 commit comments

Comments
 (0)