Skip to content

Commit

Permalink
chore: podfile hash changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciosantise committed Apr 12, 2024
1 parent cd67bcf commit f11c117
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-ios-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f11c117

Please sign in to comment.