Skip to content

Commit

Permalink
Fix packaging step not using variables correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Goju-Ryu committed Jan 1, 2025
1 parent b6d5462 commit dcab1b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ jobs:
shell: bash
run: |
$VSCE_NAME=${{ steps.vsce-info.outputs.name }}-v${{ steps.vsce-info.outputs.version }}.vsix
$VSCE_PATH=./bin/$VSCE_NAME
npm run vscode:package -- --out=$VSCE_PATH
$VSCE_PATH=./bin/${VSCE_NAME}
npm run vscode:package -- --out=${VSCE_PATH}
echo "VSCE_NAME=${VSCE_NAME}" >> $GITHUB_OUTPUT
echo "VSCE_PATH=${VSCE_PATH}" >> $GITHUB_OUTPUT
outputs:
Expand Down

0 comments on commit dcab1b9

Please sign in to comment.