From 1e66cd3d62cf5786046413e3906c7c9d666a8fba Mon Sep 17 00:00:00 2001 From: DEV_Ruel <67133244+iOS-Ruel@users.noreply.github.com> Date: Tue, 27 Aug 2024 00:50:43 +0900 Subject: [PATCH] Update swift.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 자동 서명 활성화 스크립트 추가 .xcconfig 파일 경로 설정 및 생성위치 통일 --- .github/workflows/swift.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 23355d9..108702f 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -19,10 +19,12 @@ jobs: - name: Create API_KEY.xcconfig file run: | - echo "API_KEY=${{ secrets.API_KEY }}" > CamPlace/CamPlace/API_KEY.xcconfig + mkdir -p CamPlace/CamPlace + echo "API_KEY=${{ secrets.API_KEY }}" > CamPlace/CamPlace/API_KEY.xcconfig - name: Build Xcode run: | xcodebuild clean test -project CamPlace/CamPlace.xcodeproj \ -scheme CamPlace \ -destination 'platform=iOS Simulator,name=iPhone 13,OS=latest' + -allowProvisioningUpdates