Skip to content

Commit 6324655

Browse files
committed
feat: enable prebuild and build steps, add Xcode setup for iOS builds
1 parent 9bcf43b commit 6324655

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/eas-build.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,18 @@ jobs:
132132
git config --global user.name "github-actions[bot]"
133133
git config --global user.email "github-actions[bot]@users.noreply.github.com"
134134
pnpm version ${{ inputs.new-version }} -m "chore: set app version to ${{ inputs.new-version }}"
135+
136+
- name: Setup latest version of Xcode
137+
uses: maxim-lobanov/setup-xcode@v1
138+
if: matrix.platform == 'ios'
139+
with:
140+
xcode-version: latest
135141

136-
# - name: ⚙️ Run Prebuild
137-
# run: pnpm prebuild:${{ inputs.environment }}
142+
- name: ⚙️ Run Prebuild
143+
run: pnpm prebuild:${{ inputs.environment }}
138144

139-
# - name: 📱 Run Build for ${{ matrix.platform }}
140-
# run: pnpm build:${{ inputs.environment }}:${{ matrix.platform }} --non-interactive --no-wait --message "Build ${{ inputs.environment }} for ${{ matrix.platform }}" --local
145+
- name: 📱 Run Build for ${{ matrix.platform }}
146+
run: pnpm build:${{ inputs.environment }}:${{ matrix.platform }} --non-interactive --no-wait --message "Build ${{ inputs.environment }} for ${{ matrix.platform }}" --local
141147

142148
- name: 📦 Push changes to repository
143149
if: inputs.new-version

0 commit comments

Comments
 (0)