Skip to content

Update swift.yml

Update swift.yml #10

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Run Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Create API_KEY.xcconfig file
run: |
mkdir -p CamPlace
echo "API_KEY=${{ secrets.API_KEY }}" > CamPlace/CamPlace/API_KEY.xcconfig
cat 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'
ODE_SIGNING_ALLOWED=NO