Skip to content

Commit

Permalink
fix cookiecutter rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
lakardion committed Sep 16, 2024
1 parent dd1b9c5 commit 7147e08
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
with:
expo-version: latest
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
token: {{ "${{ secrets.EXPO_TOKEN }}" }}

- name: 📦 Install dependencies
working-directory: ./mobile
Expand All @@ -60,7 +60,7 @@ jobs:
run: |
cd mobile
CLEAR_CACHE_FLAG=""
if [[ ${{ github.event.inputs.clear_cache }} ]]; then
if [[ {{ "${{ github.event.inputs.clear_cache }}" }} ]]; then
CLEAR_CACHE_FLAG="--clear-cache"
fi
eas build --profile ${{ github.event.inputs.profile }} --platform ${{ github.event.inputs.platform }} --non-interactive $CLEAR_CACHE_FLAG
eas build --profile {{ "${{ github.event.inputs.profile }}" }} --platform {{ "${{ github.event.inputs.platform }}" }} --non-interactive $CLEAR_CACHE_FLAG

0 comments on commit 7147e08

Please sign in to comment.