Skip to content

Commit

Permalink
fix: allow new rg install to define correct platform binary
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmu committed Apr 1, 2024
1 parent 95fbdc2 commit c0ac93f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/publish-vscode-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@ jobs:
node-version: 20
- run: npm ci

# - name: Set Executable Permissions for ripgrep
# run: chmod +x ./node_modules/@vscode/ripgrep/bin/rg
- name: Remove ripgrep bin folder, to allow consumers to redefine their OS specific binaries
run: rm -rf ./node_modules/@vscode/ripgrep/bin

- name: Semantic Release
run: npx semantic-release
env:
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 }}

0 comments on commit c0ac93f

Please sign in to comment.