From 7147e080bc90f345b98a8f5eb27d2cd8f29c7332 Mon Sep 17 00:00:00 2001 From: Damian Date: Mon, 16 Sep 2024 18:46:39 +0200 Subject: [PATCH] fix cookiecutter rendering --- .../.github/workflows/expo-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/expo-build.yml b/{{cookiecutter.project_slug}}/.github/workflows/expo-build.yml index ae1bc7ad0..b7e913b76 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/expo-build.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/expo-build.yml @@ -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 @@ -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