Skip to content

Commit

Permalink
[#6] Fix: update BUILD_KONFIG_PROPERTIES fetching for test.yml workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
luongvo committed Nov 30, 2023
1 parent 102b1f1 commit 5001443
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- feature/6-set-up-cd-android

jobs:
deploy_android:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- develop
- feature/6-set-up-cd-android

jobs:
deploy_android:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Decode buildKonfig properties
run: echo ${{ secrets.BUILD_KONFIG_PROPERTIES }} | base64 --decode > buildKonfig.properties
- name: Set up the necessary config
run: echo "${{ secrets.BUILD_KONFIG_PROPERTIES }}" > buildKonfig.properties

- name: Run Detekt
run: ./gradlew detekt
Expand Down Expand Up @@ -170,9 +170,9 @@ jobs:
restore-keys: |
${{ runner.os }}-pods-
- name: Decode buildKonfig properties
- name: Set up the necessary config
working-directory: ./sample
run: echo ${{ secrets.BUILD_KONFIG_PROPERTIES }} | base64 --decode > buildKonfig.properties
run: echo "${{ secrets.BUILD_KONFIG_PROPERTIES }}" > buildKonfig.properties

- name: Generate KMM frameworks for Cocoapods
run: |
Expand Down

0 comments on commit 5001443

Please sign in to comment.