Skip to content

Commit

Permalink
chore: added missing platform in gemfile, added debug options to test…
Browse files Browse the repository at this point in the history
… hash function
  • Loading branch information
ignaciosantise committed Apr 12, 2024
1 parent dc3fb37 commit 9bae611
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release-ios-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,12 @@ jobs:

- name: Calculate podfile hash
id: podfile-hash
run: echo "podfile_hash=\$(hashFiles('${{ inputs.root-path }}/ios/Podfile.lock'))" >> "$GITHUB_ENV"
run: |
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 }}"
- name: Cache pods
id: pods-cache
Expand Down
1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ GEM
xcpretty (~> 0.2, >= 0.0.7)

PLATFORMS
arm64-darwin-22
arm64-darwin-23

DEPENDENCIES
Expand Down

0 comments on commit 9bae611

Please sign in to comment.