Skip to content

Commit 88aac65

Browse files
committed
use ${{ github.workspace }}
1 parent fdc92d9 commit 88aac65

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/functional-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
nohup appium --use-plugins=images,execute-driver --relaxed-security --log-timestamp --log-no-colors 2>&1 > appium.log &
8686
8787
- run: |
88-
appium driver run xcuitest download-wda-sim --platform=${{matrix.test_targets.platform}} --outdir=$GITHUB_WORKSPACE/wda
88+
appium driver run xcuitest download-wda-sim --platform=${{matrix.test_targets.platform}} --outdir=${{ github.workspace }}/wda
8989
name: Downloading prebuilt WDA
9090
9191
- name: Set up Ruby
@@ -101,7 +101,7 @@ jobs:
101101
env:
102102
IGNORE_VERSION_SKIP: true
103103
CI: true
104-
LOCAL_PREBUILT_WDA: $GITHUB_WORKSPACE/wda/${{matrix.test_targets.wdaName}}
104+
LOCAL_PREBUILT_WDA: ${{ github.workspace }}/wda/${{matrix.test_targets.wdaName}}
105105

106106
- name: Save server output
107107
if: ${{ always() }}
@@ -160,7 +160,7 @@ jobs:
160160
nohup appium --use-plugins=images,execute-driver --relaxed-security --log-timestamp --log-no-colors > appium.log &
161161
162162
- run: |
163-
appium driver run xcuitest download-wda-sim --platform=${{matrix.test_targets.platform}} --outdir=$GITHUB_WORKSPACE/wda
163+
appium driver run xcuitest download-wda-sim --platform=${{matrix.test_targets.platform}} --outdir=${{ github.workspace }}/wda
164164
name: Downloading prebuilt WDA
165165
166166
- name: Set up Ruby
@@ -175,7 +175,7 @@ jobs:
175175
env:
176176
IGNORE_VERSION_SKIP: true
177177
CI: true
178-
LOCAL_PREBUILT_WDA: $GITHUB_WORKSPACE/wda/WebDriverAgentRunner-Runner.app
178+
LOCAL_PREBUILT_WDA: ${{ github.workspace }}/wda/WebDriverAgentRunner-Runner.app
179179

180180
- name: Save server output
181181
if: ${{ always() }}

0 commit comments

Comments
 (0)