From f9a6c63f6f587c4b107c5a64743b531445d24cca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=8F=84=ED=98=84?= Date: Sat, 13 Jan 2024 00:26:41 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20Tuist=20Build=20Command=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/swift.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 801850533..40a352ff4 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -18,12 +18,6 @@ jobs: - name: Checkout branch uses: actions/checkout@v3 - - name: Tuist Clean Command - uses: tuist/tuist-action@0.13.0 - with: - command: 'clean' - arguments: '' - - name: Tuist Fetch Command uses: tuist/tuist-action@0.13.0 with: @@ -35,11 +29,17 @@ jobs: with: command: 'generate' arguments: '' - # - name: bibbi app scheme output # Bibbi App Scheme Output Code - # run: xcodebuild -list -workspace "Bibbi.xcworkspace" + - name: Tuist Build Command + uses: tuist/tuist-action@0.13.0 + with: + command: 'build' + arguments: '' + + - name: bibbi app scheme output # Bibbi App Scheme Output Code + run: xcodebuild -list -workspace "Bibbi.xcworkspace" - # - name: xcode build App 🛠️ # Bibbi App Build - # run: xcodebuild clean build -workspace "Bibbi.xcworkspace" -scheme "${{ matrix.xcodebuild-scheme }}" -destination "platform=iOS Simulator,name=iPhone 13 mini,OS=latest" + - name: xcode build App 🛠️ # Bibbi App Build + run: xcodebuild clean build -workspace "Bibbi.xcworkspace" -scheme "${{ matrix.xcodebuild-scheme }}" -destination "platform=iOS Simulator,name=iPhone 13 mini,OS=latest" - name: Upload coverage to Codecov uses: codecov/codecov-action@v1.2.1