Skip to content

Commit 9c41eff

Browse files
committed
Add bundle cache to workflow
1 parent 870da78 commit 9c41eff

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
- name: Cache gems
2323
uses: actions/cache@v4
2424
with:
25-
path: ~/.local/share/mise/installs/ruby/3.4.7/lib/ruby/gems/3.4.0
25+
path: vendor/cache
2626
key: ${{ runner.os }}-mise-gems-${{ hashFiles('Gemfile.lock') }}
2727

28-
- name: Install Fastlane
28+
- name: Install Fastlane with cache
2929
run: |
30-
bundle install
30+
bundle cache
3131
3232
- name: Set Xcode 26.0.1
3333
run: |

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ devices.txt
66
Scripts/build_phases/
77
SourcePackages/
88
Builds/
9+
vendor/
10+
.bundle/
911
.swiftpm
1012

1113
## App packaging ###

0 commit comments

Comments
 (0)