Skip to content

Commit bde832d

Browse files
authored
CI: Ensure workspace folder exists
1 parent b0ab91b commit bde832d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ jobs:
5757
run: |
5858
$DOWNLOAD_TOOL https://nodejs.org/dist/v16.20.2/node-v16.20.2-linux-x64.tar.xz
5959
tar -xf node-v16.20.2-linux-x64.tar.xz
60-
cp -a node-v16.20.2-linux-x64/bin/node ${{ github.workspace }}/node16
60+
mkdir -p ${{ github.workspace }}
61+
cp -a ./node-v16.20.2-linux-x64/bin/node ${{ github.workspace }}/node16
6162
ls ${{ github.workspace }}
6263
${{ github.workspace }}/node16 --version
6364

0 commit comments

Comments
 (0)