Skip to content

Commit

Permalink
fix: sanity check manual deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmu committed Apr 1, 2024
1 parent 84af764 commit b9936ea
Show file tree
Hide file tree
Showing 4 changed files with 144 additions and 67 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/publish-vscode-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Add any other tokens or configuration required by semantic-release plugins

- name: Install Visual Studio Marketplace CLI
run: npm install -g vsce
# - name: Install Visual Studio Marketplace CLI
# run: npm install -g vsce

- name: Package & Publish Extension to Visual Studio Marketplace
run: vsce publish --pat ${{ secrets.VS_MARKETPLACE_TOKEN }}
# - name: Package & Publish Extension to Visual Studio Marketplace
# run: vsce publish --pat ${{ secrets.VS_MARKETPLACE_TOKEN }}

- name: Install Open VSX CLI
run: npm install -g ovsx
# - name: Install Open VSX CLI
# run: npm install -g ovsx

- name: Package & Publish Extension to Open VSX Registry
run: ovsx publish --pat ${{ secrets.OPEN_VSX_TOKEN }}
# - name: Package & Publish Extension to Open VSX Registry
# run: ovsx publish --pat ${{ secrets.OPEN_VSX_TOKEN }}
178 changes: 121 additions & 57 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 14 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
"name": "periscope",
"displayName": "Periscope",
"description": "ripgrep workspace search with file peek",
"keywords": [
"rg",
"ripgrep",
"search",
"telescope",
"peek",
"grep",
"file search",
"workspace search",
"search in files",
"search in folder",
"search preview"
],
"version": "1.3.3",
"publisher": "JoshMu",
"icon": "assets/icon.png",
Expand Down Expand Up @@ -200,7 +213,7 @@
},
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode-ripgrep": "1.13.2"
"@vscode/ripgrep": "^1.15.9"
},
"release": {
"branches": [
Expand Down
2 changes: 1 addition & 1 deletion src/periscope.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChildProcessWithoutNullStreams, spawn } from 'child_process';
import * as path from 'path';
import * as vscode from 'vscode';
import { rgPath } from 'vscode-ripgrep';
import { rgPath } from '@vscode/ripgrep';
import { highlightDecorationType } from './utils/decorationType';
import { getConfig } from './utils/getConfig';
import { getSelectedText } from './utils/getSelectedText';
Expand Down

0 comments on commit b9936ea

Please sign in to comment.