From f11c117d18c410bbbe9708979575ca1decb65b1e Mon Sep 17 00:00:00 2001 From: ignaciosantise Date: Fri, 12 Apr 2024 15:55:22 -0300 Subject: [PATCH] chore: podfile hash changes --- .github/workflows/release-ios-base.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-ios-base.yaml b/.github/workflows/release-ios-base.yaml index 25946d07..d191ca67 100644 --- a/.github/workflows/release-ios-base.yaml +++ b/.github/workflows/release-ios-base.yaml @@ -86,15 +86,15 @@ jobs: echo "Root path: ${{ inputs.root-path }}" echo "Full path: ${{ inputs.root-path }}/ios/Podfile.lock" echo "File exists: $(test -f "${{ inputs.root-path }}/ios/Podfile.lock" && echo "yes" || echo "no")" - echo "podfile_hash=$(hashFiles(${{ inputs.root-path }}/ios/Podfile.lock))" >> "$GITHUB_ENV" - echo "Podfile hash: ${{ env.podfile_hash }}" + echo "podfile_path=${{ inputs.root-path }}/ios/Podfile.lock" >> "$GITHUB_ENV" + echo "Podfile path: ${{ env.podfile_path }}" - name: Cache pods id: pods-cache uses: actions/cache@v3 with: path: ${{ inputs.root-path }}/ios/Pods - key: ${{ runner.os }}-pods-${{ env.podfile_hash }} + key: ${{ runner.os }}-pods-${{ hashFiles(env.podfile_path) }} - name: Install Ruby uses: ruby/setup-ruby@v1