Skip to content

Commit

Permalink
[#8] Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
blyscuit committed Sep 20, 2022
1 parent 854378c commit c200409
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/deploy_ios_firebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@ jobs:
uses: styfle/cancel-workflow-action@0.5.0
with:
access_token: ${{ github.token }}

- name: Setup Konfig Properties
env:
KMM_KONFIG_PROPERTIES: ${{ secrets.KMM_KONFIG_PROPERTIES }}
run: |
cd ..
cd buildSrc/src/main/kotlin/myPackage
touch BuildKonfig.kt
echo $KMM_KONFIG_PROPERTIES | base64 --decode > BuildKonfig.kt
- name: Set up JAVA 11
uses: actions/setup-java@v3
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/deploy_ios_release_firebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@ jobs:
uses: styfle/cancel-workflow-action@0.5.0
with:
access_token: ${{ github.token }}

- name: Setup Konfig Properties
env:
KMM_KONFIG_PROPERTIES: ${{ secrets.KMM_KONFIG_PROPERTIES }}
run: |
cd ..
cd buildSrc/src/main/kotlin/myPackage
touch BuildKonfig.kt
echo $KMM_KONFIG_PROPERTIES | base64 --decode > BuildKonfig.kt
- name: Set up JAVA 11
uses: actions/setup-java@v3
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/ios_review_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ jobs:
uses: styfle/cancel-workflow-action@0.10.0
with:
access_token: ${{ github.token }}

- name: Setup Konfig Properties
env:
KMM_KONFIG_PROPERTIES: ${{ secrets.KMM_KONFIG_PROPERTIES }}
run: |
cd ..
cd buildSrc/src/main/kotlin/myPackage
touch BuildKonfig.kt
echo $KMM_KONFIG_PROPERTIES | base64 --decode > BuildKonfig.kt
- name: Set up JAVA 11
uses: actions/setup-java@v3
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/kmm_review_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ jobs:
uses: styfle/cancel-workflow-action@0.10.0
with:
access_token: ${{ github.token }}

- name: Setup Konfig Properties
env:
KMM_KONFIG_PROPERTIES: ${{ secrets.KMM_KONFIG_PROPERTIES }}
run: |
cd buildSrc/src/main/kotlin/myPackage
touch BuildKonfig.kt
echo $KMM_KONFIG_PROPERTIES | base64 --decode > BuildKonfig.kt
- name: Set up JAVA 11
uses: actions/setup-java@v3
Expand Down

0 comments on commit c200409

Please sign in to comment.