Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Burzo committed Dec 26, 2023
1 parent 3733887 commit 9f5cb1a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,16 @@ jobs:
- name: Install bundler
run: |
gem install bundler -v 2.4.10
- name: Install gem plugins
run: |
- name: Install gem plugins
run: |
bundle install
- name: Cache cocoapods
uses: actions/cache@v3
with:
path: /ios/Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Install dependencies with CocoaPods
run: |
cd ios && bundle exec pod install && cd ..
Expand Down
3 changes: 2 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ platform :ios do
lane :build_debug do
install_provisioning_profile(path: "./fastlane/profile.mobileprovision")
import_certificate(
keychain_name: "login.keychain",
certificate_path: "./fastlane/cert.p12",
certificate_password: ENV["IOS_CERT_PASSWORD"] || "default"
certificate_password: ENV["IOS_CERT_PASSWORD"]
)

build_ios_app(
Expand Down

0 comments on commit 9f5cb1a

Please sign in to comment.