Skip to content

Commit

Permalink
Make VSCE_PATH use env.CICD_INTERMEDIATES_DIR as base path
Browse files Browse the repository at this point in the history
  • Loading branch information
Goju-Ryu authored and sharkdp committed Jan 11, 2025
1 parent c6a8cee commit 8516d1e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,9 @@ jobs:
id: vsce-package
shell: bash
run: |
BASE_PATH="${{ env.CICD_INTERMEDIATES_DIR }}"
VSCE_NAME=${{ steps.vsce-info.outputs.name }}-v${{ steps.vsce-info.outputs.version }}.vsix
VSCE_PATH="out/${VSCE_NAME}"
VSCE_PATH="${BASE_PATH}/out/${VSCE_NAME}"
mkdir "out"
npm run vscode:package -- --out="${VSCE_PATH}"
echo "VSCE_NAME=${VSCE_NAME}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 8516d1e

Please sign in to comment.