Skip to content

Commit

Permalink
✨ :: [#318] Keychain 스크립트 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
uuuunseo committed Jun 28, 2024
1 parent c5d29b7 commit 53097f9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/CD/Keychain.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

security create-keychain -p "" "$KEYCHAIN"
security list-keychains -s "$KEYCHAIN"
security default-keychain -s "$KEYCHAIN"
security unlock-keychain -p "" "$KEYCHAIN"
security set-keychain-settings -lut 1200
security list-keychains
7 changes: 6 additions & 1 deletion .github/workflows/bitgouel-ios-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,15 @@ jobs:
- name: Install fastlane
run: brew install fastlane

- name: decrypt
- name: Decrypt
run: sh .github/workflows/CD/Decrypt.sh
shell: bash

- name: Configure keychain
run:: sh .github/workflows/CD/Keychain.sh
shell: bash


- name: Install Dependencies
run: tuist fetch

Expand Down
4 changes: 3 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ platform :ios do

match(
git_url: "https://github.com/uuuunseo/match.git",
type: "appstore"
storage_mode: "git",
type: "appstore",
readonly: true,
)

build_app(
Expand Down

0 comments on commit 53097f9

Please sign in to comment.