Skip to content

Commit 3394dcc

Browse files
committed
ci: Add missing shell property in compile-docs composite action
1 parent 7cfbfa8 commit 3394dcc

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/actions/compile-docs/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ runs:
4242
destination="destination=$(xcrun simctl list devices $devicetype available | grep -v -- -- | tail -n 1 | grep -oE '[0-9A-F\-]{36}')"
4343
fi
4444
xcodebuild -scheme "$TARGET" -destination "$(destination)" docbuild | xcbeautify --renderer github-actions
45+
shell: bash
4546
env:
4647
TARGET: ${{ inputs.target }}
4748
DEVICE_TYPE: ${{ inputs.xcodebuild-device-type }}

.github/workflows/build-test-and-docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,12 +212,14 @@ jobs:
212212
run: swift test --test-product swift-cross-uiPackageTests
213213

214214
- name: Compile GtkBackend docs
215+
if: ${{ matrix.os == 'ubuntu-24.04' }}
215216
uses: ./.github/actions/compile-docs
216217
with:
217218
target: GtkBackend
218219
upload: true
219220

220221
- name: Compile Gtk3Backend docs
222+
if: ${{ matrix.os == 'ubuntu-24.04' }}
221223
uses: ./.github/actions/compile-docs
222224
with:
223225
target: Gtk3Backend

0 commit comments

Comments
 (0)