We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09d683d commit f447f6cCopy full SHA for f447f6c
.github/workflows/ui-tests.yml
@@ -66,11 +66,10 @@ jobs:
66
path: ${{ runner.temp }}/ahk.zip
67
- name: Install AutoHotKey2
68
shell: bash
69
- working-directory: ${{ runner.temp }}
70
run: |
71
- mkdir -p ahk &&
72
- "$WINDIR/system32/tar.exe" -C ahk -xf "$RUNNER_TEMP/ahk.zip" &&
73
- cygpath -aw "ahk" >>$GITHUB_PATH
+ mkdir -p "$RUNNER_TEMP/ahk" &&
+ "$WINDIR/system32/tar.exe" -C "$RUNNER_TEMP/ahk" -xf "$RUNNER_TEMP/ahk.zip" &&
+ cygpath -aw "$RUNNER_TEMP/ahk" >>$GITHUB_PATH
74
- uses: actions/setup-node@v4 # the hook uses node for the background process
75
76
- uses: actions/checkout@v4
0 commit comments