Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test #221

Closed
wants to merge 2 commits into from
Closed

test #221

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
XC_ARCHIVE: ${{ 'Pickle-release.xcarchive' }}

# certificate
ENCRYPTED_CERT_FILE_PATH: ${{ '.github/secrets/certificate.p12.gpg' }}
DECRYPTED_CERT_FILE_PATH: ${{ '.github/secrets/certificate.p12' }}
ENCRYPTED_CERT_FILE_PATH: ${{ '.github/workflows/secrets/certificate.p12.gpg' }}
DECRYPTED_CERT_FILE_PATH: ${{ '.github/workflows/secrets/certificate.p12' }}
CERT_ENCRYPTION_KEY: ${{ secrets.CERT_ENCRYPTION_PASSWORD }} # gpg로 파일 암호화할 때 사용한 암호

# provisioning
ENCRYPTED_PROVISION_FILE_PATH: ${{ '.github/secrets/release_realDoPizza.mobileprovision.gpg' }}
DECRYPTED_PROVISION_FILE_PATH: ${{ '.github/secrets/release_realDoPizza.mobileprovision' }}
ENCRYPTED_PROVISION_FILE_PATH: ${{ '.github/workflows/secrets/release_realDoPizza.mobileprovision.gpg' }}
DECRYPTED_PROVISION_FILE_PATH: ${{ '.github/workflows/secrets/release_realDoPizza.mobileprovision' }}
PROVISIONING_ENCRYPTION_KEY: ${{ secrets.PROVISION_ENCRYTION_PASSWORD }} # gpg로 파일 암호화할 때 사용한 암호

# certification export key
Expand Down
2 changes: 1 addition & 1 deletion Pickle/Pickle/Screen/Home/HomeView/View/HomeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ struct HomeView: View {
content
.task {
await todoStore.fetch() // MARK: Persistent 저장소에서 Todo 데이터 가져오기

Log.debug("testFlight Test Log")
if isRunTimer { ongoingTodo = todoStore.getSeletedTodo(id: todoId) }
}
.onReceive(userStore.$user) {
Expand Down
Loading