-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Tuist Action 제거 run 명령어로 Tuist 실행
- Loading branch information
1 parent
9f5d76c
commit d92e159
Showing
1 changed file
with
9 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
with: | ||
command: 'clean' | ||
arguments: '' | ||
run: tuist clean | ||
|
||
- name: Tuist Fetch Command | ||
uses: tuist/[email protected] | ||
with: | ||
command: 'fetch' | ||
arguments: '' | ||
run: tuist fetch | ||
|
||
- name: Tuist generate Command | ||
run: tuist generate | ||
|
||
- name: Tuist Generate Command | ||
uses: tuist/[email protected] | ||
with: | ||
command: 'generate' | ||
arguments: '' | ||
- name: Tuist Build Command | ||
uses: tuist/[email protected] | ||
with: | ||
command: 'build' | ||
arguments: '' | ||
|
||
run: tuist build | ||
|
||
- name: bibbi app scheme output # Bibbi App Scheme Output Code | ||
run: xcodebuild -list -workspace "Bibbi.xcworkspace" | ||
|