-
Notifications
You must be signed in to change notification settings - Fork 12
46 lines (43 loc) · 1.26 KB
/
snapshots.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Snapshots
on: workflow_dispatch
jobs:
record:
name: Record snapshots for unit & ui tests
runs-on: macos-14
defaults:
run:
working-directory: BuyPolish
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.WORKFLOW_ACCESS_TOKEN_GITHUB }}
- name: Cache bundler gems
uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Cache pods
uses: actions/cache@v4
with:
path: BuyPolish/Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Bundler
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Pod install
run: bundle exec pod install
- name: Record snapshots
run: bundle exec fastlane record_snapshots
- name: "Upload Tests results"
if: always()
uses: actions/upload-artifact@v4
with:
name: xcresult
path: BuyPolish/fastlane/test_output