Skip to content

Commit 203859e

Browse files
author
PEZ
committed
Try with download straight into the current directory
1 parent b3fd57f commit 203859e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,16 +116,16 @@ jobs:
116116
- name: Download VSIX Artifact
117117
uses: actions/download-artifact@v4
118118
with:
119-
path: /tmp
119+
path: .
120120
pattern: '${{ runner.os }}-*.vsix'
121121
merge-multiple: true
122122

123123
- name: Get VSIX File Name
124124
id: get-vsix-name
125125
shell: bash
126126
run: |
127-
ls /tmp/
128-
echo "VSIX_NAME=$(find /tmp -name '*.vsix')" >> $GITHUB_ENV
127+
ls ./
128+
echo "VSIX_NAME=$(ls *.vsix)" >> $GITHUB_ENV
129129
130130
- name: Setup Node.js
131131
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)