Skip to content

Commit

Permalink
ci: 👷 add CI pipeline and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
krish-r committed Jan 1, 2023
1 parent c296378 commit 286f865
Show file tree
Hide file tree
Showing 5 changed files with 6,234 additions and 4,301 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build and Publish
on:
release:
types:
- "created"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install Dependencies
run: npm install
- name: Publish
if: success() && startsWith(github.ref, 'refs/tags/')
run: npm run deploy
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,13 @@
### Added

- Initial release

## [0.0.2] - 2023-01-01

### Added

- CI Pipeline

### Changed

- Updated Known Limitation in README
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ However, there isn't an one-click option to do the same.

As a workaround, we need to click the toggle twice to show (focus) on the active terminal first (and once more if we need to hide)

- This does not work well if the Terminal is created in the Editor Area (`Terminal: Create New Terminal in Editor Area`) instead of Panel (default)

- Tests - There aren't any tests right now

If you come across any other issue, or if you could improve this extension please feel free to raise a Bug/PR
Expand Down
Loading

0 comments on commit 286f865

Please sign in to comment.