Skip to content

Commit 9968d30

Browse files
committed
fix: quote $HOME in debug step, declare runner_provider input in api-specs
1 parent 734f456 commit 9968d30

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/build-ios-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
uses: actions/checkout@v6
102102

103103
- name: Debug runner environment
104-
run: whoami && echo $HOME
104+
run: whoami && echo "$HOME"
105105

106106
- name: Restore Xcode derived data from branch cache
107107
id: xcode-restore-cache

.github/workflows/run-e2e-api-specs.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ name: API Specs E2E Tests
66
on:
77
workflow_call:
88
workflow_dispatch:
9+
inputs:
10+
runner_provider:
11+
description: Runner provider for this manual trial run
12+
required: false
13+
type: choice
14+
options:
15+
- current
16+
- namespace
17+
default: current
918
pull_request:
1019
types: [opened, synchronize]
1120

0 commit comments

Comments
 (0)