Skip to content

Commit 4a2ef6a

Browse files
authored
Fix script path in Windows workflow (#7466)
1 parent 03ed109 commit 4a2ef6a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
shell: bash
180180
working-directory: ${{ env.BUILD_DIR }}
181181
run: |
182-
.github/workflows/update_release.sh package/${{ env.DEVEL_PKG_NAME }}
182+
$GITHUB_WORKSPACE/.github/workflows/update_release.sh package/${{ env.DEVEL_PKG_NAME }}
183183
184184
- name: Viewer App
185185
working-directory: ${{ env.BUILD_DIR }}
@@ -350,7 +350,7 @@ jobs:
350350
shell: bash
351351
working-directory: ${{ env.BUILD_DIR }}
352352
run: |
353-
.github/workflows/update_release.sh lib/python_package/pip_package/${{ env.PIP_PKG_NAME }}
353+
$GITHUB_WORKSPACE/.github/workflows/update_release.sh lib/python_package/pip_package/${{ env.PIP_PKG_NAME }}
354354
355355
test-wheel:
356356
name: Test wheel

0 commit comments

Comments
 (0)