Skip to content

Commit

Permalink
[#169] Format spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
doannimble committed Sep 6, 2023
1 parent db787be commit 9309890
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Set up Production env
env:
ENV: ${{#mustacheCase}} secrets.ENV {{/mustacheCase}}
ENV: ${{#mustacheCase}}secrets.ENV{{/mustacheCase}}
run: |
echo -e "$ENV" >> .env
Expand All @@ -55,16 +55,16 @@ jobs:
id: bunlderCache
with:
path: ios/vendor/bundle
key: ${{#mustacheCase}} runner.os {{/mustacheCase}}-gems-${{#mustacheCase}} hashFiles('**/Gemfile.lock') {{/mustacheCase}}
restore-keys: ${{#mustacheCase}} runner.os {{/mustacheCase}}-gems-
key: ${{#mustacheCase}}runner.os{{/mustacheCase}}-gems-${{#mustacheCase}}hashFiles('**/Gemfile.lock'){{/mustacheCase}}
restore-keys: ${{#mustacheCase}}runner.os{{/mustacheCase}}-gems-

- name: Cache Pods
uses: actions/cache@v3
id: cocoapodCache
with:
path: ios/Pods
key: ${{#mustacheCase}} runner.os {{/mustacheCase}}-pods-${{#mustacheCase}} hashFiles('**/Podfile.lock') {{/mustacheCase}}
restore-keys: ${{ runner.os }}-pods-
key: ${{#mustacheCase}}runner.os{{/mustacheCase}}-pods-${{#mustacheCase}}hashFiles('**/Podfile.lock'){{/mustacheCase}}
restore-keys: ${{#mustacheCase}}runner.os{{/mustacheCase}}-pods-

- name: Bundle install
run: cd ./ios && bundle install
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Set up Production env
env:
ENV: ${{#mustacheCase}} secrets.ENV {{/mustacheCase}}
ENV: ${{#mustacheCase}}secrets.ENV{{/mustacheCase}}
run: |
echo -e "$ENV" >> .env
Expand All @@ -55,16 +55,16 @@ jobs:
id: bunlderCache
with:
path: ios/vendor/bundle
key: ${{#mustacheCase}} runner.os {{/mustacheCase}}-gems-${{#mustacheCase}} hashFiles('**/Gemfile.lock') {{/mustacheCase}}
restore-keys: ${{#mustacheCase}} runner.os {{/mustacheCase}}-gems-
key: ${{#mustacheCase}}runner.os{{/mustacheCase}}-gems-${{#mustacheCase}}hashFiles('**/Gemfile.lock'){{/mustacheCase}}
restore-keys: ${{#mustacheCase}}runner.os{{/mustacheCase}}-gems-

- name: Cache Pods
uses: actions/cache@v3
id: cocoapodCache
with:
path: ios/Pods
key: ${{#mustacheCase}} runner.os {{/mustacheCase}}-pods-${{#mustacheCase}} hashFiles('**/Podfile.lock') {{/mustacheCase}}
restore-keys: ${{#mustacheCase}} runner.os {{/mustacheCase}}-pods-
key: ${{#mustacheCase}}runner.os{{/mustacheCase}}-pods-${{#mustacheCase}}hashFiles('**/Podfile.lock'){{/mustacheCase}}
restore-keys: ${{#mustacheCase}}runner.os{{/mustacheCase}}-pods-

- name: Bundle install
run: cd ./ios && bundle install
Expand Down

0 comments on commit 9309890

Please sign in to comment.