From ab63048fe514d22509c0166bd5210462e537341b Mon Sep 17 00:00:00 2001 From: Mahmudul Hasan Shohag Date: Thu, 29 Jun 2023 10:04:58 +0600 Subject: [PATCH] Fix `local.properties` file create issue to GH actions --- .github/workflows/build-beta-upload-android.yml | 2 +- .github/workflows/build-production-upload-android.yml | 2 +- .github/workflows/codeql.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-beta-upload-android.yml b/.github/workflows/build-beta-upload-android.yml index 65be27d..a2b88e3 100644 --- a/.github/workflows/build-beta-upload-android.yml +++ b/.github/workflows/build-beta-upload-android.yml @@ -22,7 +22,7 @@ jobs: - name: Initialize local properties env: API_KEY: ${{ secrets.MAPS_API_KEY }} - run: echo MAPS_API_KEY="$MAPS_API_KEY" > ./local.properties ; echo CMS_API_KEY="$CMS_API_KEY" > ./local.properties + run: echo MAPS_API_KEY="$MAPS_API_KEY" >> ./local.properties ; echo CMS_API_KEY="$CMS_API_KEY" >> ./local.properties # Set up your GitHub Actions workflow with a specific version of Java - name: Setup Java JDK diff --git a/.github/workflows/build-production-upload-android.yml b/.github/workflows/build-production-upload-android.yml index 1282719..30789f3 100644 --- a/.github/workflows/build-production-upload-android.yml +++ b/.github/workflows/build-production-upload-android.yml @@ -19,7 +19,7 @@ jobs: - name: Initialize local properties env: API_KEY: ${{ secrets.MAPS_API_KEY }} - run: echo MAPS_API_KEY="$MAPS_API_KEY" > ./local.properties ; echo CMS_API_KEY="$CMS_API_KEY" > ./local.properties + run: echo MAPS_API_KEY="$MAPS_API_KEY" >> ./local.properties ; echo CMS_API_KEY="$CMS_API_KEY" >> ./local.properties # Set up your GitHub Actions workflow with a specific version of Java - name: Setup Java JDK diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1fc76db..163827a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -64,7 +64,7 @@ jobs: - name: Initialize local properties env: API_KEY: ${{ secrets.MAPS_API_KEY }} - run: echo MAPS_API_KEY="$MAPS_API_KEY" > ./local.properties ; echo CMS_API_KEY="$CMS_API_KEY" > ./local.properties + run: echo MAPS_API_KEY="$MAPS_API_KEY" >> ./local.properties ; echo CMS_API_KEY="$CMS_API_KEY" >> ./local.properties # Set up your GitHub Actions workflow with a specific version of Java - name: Setup Java JDK