Skip to content

[vscode extension] Fixed github action workflow error #1368

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/vscode-ext-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
node-version: 16
- name: Install dependencies
run: |
apt install jq
npm install -g yarn
npm install -g vsce
npm install -g ovsx
Expand All @@ -30,8 +29,6 @@ jobs:
working-directory: vscode-extension
- name: publish-ovsx
run: |
mv package.json package-temp.json
jq 'del(.extensionDependencies[0])' package-temp.json > package.json
rm package-temp.json
sed -i 's/"ms-vscode-remote.remote-ssh"//g' package.json
ovsx publish --pat ${{ secrets.OVSX_MARKETPLACE_TOKEN }} --yarn --skip-duplicate
working-directory: vscode-extension