We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8274474 commit d328a58Copy full SHA for d328a58
.github/workflows/check.yml
@@ -54,6 +54,10 @@ jobs:
54
working-directory: packages/examples/${{ matrix.example }}
55
run: yarn install --frozen-lockfile
56
57
+ - name: Install iOS dependencies (CocoaPods)
58
+ working-directory: packages/examples/${{ matrix.example }}/ios
59
+ run: bundle exec pod install
60
+
61
- name: Build iOS (Release)
62
63
run: |
.github/workflows/release.yml
@@ -1,9 +1,8 @@
1
name: Release
2
3
on:
4
- push:
5
- branches:
6
- - main
+ release:
+ types: [ published ]
7
8
concurrency:
9
group: '${{ github.workflow }}-${{ github.head_ref || github.ref_name }}'
0 commit comments