Skip to content

Commit e79cc49

Browse files
committed
Add publish workflow
1 parent 2a23fc4 commit e79cc49

File tree

5 files changed

+2269
-18
lines changed

5 files changed

+2269
-18
lines changed

.github/workflows/publish.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Publish Extension
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: "lts/*"
18+
19+
- name: Install dependencies
20+
run: npm ci
21+
22+
- name: Publish
23+
run: |
24+
npx vsce publish -p ${{ secrets.PUBLISHER_TOKEN }} patch

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
22

33
ET (External Terminal) provides a convenient way to open your preferred external terminal with a keyboard shortcut, directly from VS Code (or Cursor). This extension opens your configured external terminal application in the current workspace directory.
44

5-
## Installation 📦
6-
7-
1. Download .vsix file from this repo
8-
2. Open VS Code/Cursor
9-
3. Go to the Extensions view.
10-
4. Select Views and More Actions...
11-
5. Select Install from VSIX...
12-
135
## Features 🚀
146

157
This extension adds a command to open an external terminal application from your editor:

et-0.0.1.vsix

-17.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)