Skip to content

Commit

Permalink
Update GitHub Actions workflow to include Tuist installation and Xcod…
Browse files Browse the repository at this point in the history
…e project generation

- Added steps to install Tuist and generate the Xcode project before the build process.
- Changed the build command to use the workspace instead of the project file for improved compatibility.

These changes enhance the CI/CD pipeline by ensuring the project is correctly set up for building.
  • Loading branch information
ygsgdbd committed Dec 22, 2024
1 parent 102b0a6 commit 2256b48
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,18 @@ jobs:
with:
xcode-version: '15.2'

- name: Install Tuist
run: |
brew install tuist
- name: Generate Xcode Project
run: |
tuist generate --no-open
- name: Build App
run: |
xcodebuild \
-project VastWords.xcodeproj \
-workspace VastWords.xcworkspace \
-scheme VastWords \
-configuration Release \
-derivedDataPath ./DerivedData \
Expand Down

0 comments on commit 2256b48

Please sign in to comment.