diff --git a/.github/actions/python-build-vsix/action.yml b/.github/actions/python-build-vsix/action.yml index 8b1f23bc0e5..891dcc6b4a3 100644 --- a/.github/actions/python-build-vsix/action.yml +++ b/.github/actions/python-build-vsix/action.yml @@ -65,14 +65,14 @@ runs: - name: Run npm ci run: | - cd extensions/positron-python - npm ci --prefer-offline + cd extensions/positron-python + npm ci --prefer-offline shell: bash - name: Update optional extension dependencies run: | - cd extensions/positron-python - npm run addExtensionPackDependencies + cd extensions/positron-python + npm run addExtensionPackDependencies shell: bash - name: Build Webpack @@ -84,15 +84,15 @@ runs: - name: Build VSIX run: | - cd extensions/positron-python - npx vsce package --target ${{ inputs.vsix_target }} --out positron-python-dev.vsix --pre-release + cd extensions/positron-python + npx vsce package --target ${{ inputs.vsix_target }} --out positron-python-dev.vsix --pre-release shell: bash - name: Rename VSIX # Move to a temp name in case the specified name happens to match the default name. run: | - cd extensions/positron-python - mv positron-python-dev.vsix positron-python-dev-temp.vsix && mv positron-python-dev.vsix ${{ inputs.vsix_name }} + cd extensions/positron-python + mv positron-python-dev.vsix positron-python-dev-temp.vsix && mv positron-python-dev.vsix ${{ inputs.vsix_name }} shell: bash - name: Upload VSIX