Skip to content

Commit

Permalink
Fix mkdir for vsce output
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 8516d1e commit 0eb382f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
BASE_PATH="${{ env.CICD_INTERMEDIATES_DIR }}"
VSCE_NAME=${{ steps.vsce-info.outputs.name }}-v${{ steps.vsce-info.outputs.version }}.vsix
VSCE_PATH="${BASE_PATH}/out/${VSCE_NAME}"
mkdir "out"
mkdir -p "${BASE_PATH}/out"
npm run vscode:package -- --out="${VSCE_PATH}"
echo "VSCE_NAME=${VSCE_NAME}" >> $GITHUB_OUTPUT
echo "VSCE_PATH=${VSCE_PATH}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 0eb382f

Please sign in to comment.