From d92e159f3c7d01817ec13316b597b41822310d6c 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 01:33:27 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Tuist=20Action=20=EC=A0=9C=EA=B1=B0=20ru?= =?UTF-8?q?n=20=EB=AA=85=EB=A0=B9=EC=96=B4=EB=A1=9C=20Tuist=20=EC=8B=A4?= =?UTF-8?q?=ED=96=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/swift.yml | 27 +++++++++------------------ 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 5c28b0d81..a1e48ba8f 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -18,29 +18,20 @@ jobs: - name: Checkout branch uses: actions/checkout@v3 + - name: Install Tuist CLI + run: curl -Ls https://install.tuist.io | bash + - name: Tuist Clean Command - uses: tuist/tuist-action@0.13.0 - with: - command: 'clean' - arguments: '' + run: tuist clean - name: Tuist Fetch Command - uses: tuist/tuist-action@0.13.0 - with: - command: 'fetch' - arguments: '' + run: tuist fetch + + - name: Tuist generate Command + run: tuist generate - - name: Tuist Generate Command - uses: tuist/tuist-action@0.13.0 - with: - command: 'generate' - arguments: '' - name: Tuist Build Command - uses: tuist/tuist-action@0.13.0 - with: - command: 'build' - arguments: '' - + run: tuist build - name: bibbi app scheme output # Bibbi App Scheme Output Code run: xcodebuild -list -workspace "Bibbi.xcworkspace"