Skip to content

Commit 35fb8e2

Browse files
author
PEZ
committed
Go via e bash variable to set the VSIX_NAME
1 parent db874aa commit 35fb8e2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ jobs:
123123
- name: Get VSIX File Name
124124
id: get-vsix-name
125125
shell: bash
126-
run: echo "VSIX_NAME=/tmp/${{ runner.os }}-*.vsix" >> $GITHUB_ENV
126+
run: |
127+
VSIX_NAME=$(ls /tmp/${{ runner.os }}-*.vsix)
128+
echo "VSIX_NAME=$VSIX_NAME" >> $GITHUB_ENV
127129
128130
- name: Setup Node.js
129131
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)