Skip to content

Commit d42f539

Browse files
authored
Work around GH worker bug (#326)
1 parent dfd9ed5 commit d42f539

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/reusable-build-release-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/cache/restore@v4
6060
with:
6161
path: app/build/derived_data
62-
key: ${{ runner.os }}_release_build_${{ hashFiles('app/**') }}
62+
key: ${{ runner.os }}_release_build_${{ hashFiles('app/modules/**', 'app/command/**', 'app/fastlane/**', 'app/tools/**', 'app/*.xcconfig') }}
6363
restore-keys: |
6464
${{ runner.os }}_release_build_
6565
# If more Xcode specific issues arise with caching, consider the less used 3rd party https://github.com/irgaly/xcode-cache
@@ -99,7 +99,7 @@ jobs:
9999
uses: actions/cache/save@v4
100100
with:
101101
path: app/build/derived_data
102-
key: ${{ runner.os }}_release_build_${{ hashFiles('app/**') }}
102+
key: ${{ runner.os }}_release_build_${{ hashFiles('app/modules/**', 'app/command/**', 'app/fastlane/**', 'app/tools/**', 'app/*.xcconfig') }}
103103
- name: Save SPM packages cache
104104
if: ${{ inputs.save_cache }}
105105
uses: actions/cache/save@v4

0 commit comments

Comments
 (0)