Skip to content

Commit 4763c4e

Browse files
committed
Merge branch 'main' of https://github.com/RooVetGit/Roo-Cline into feature/pupeteer-updates
2 parents fe1d823 + b1c0e9b commit 4763c4e

File tree

9 files changed

+4109
-2274
lines changed

9 files changed

+4109
-2274
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# These owners will be the default owners for everything in the repo
2+
* @stea9499 @ColemanRoo @mrubens

.github/workflows/code-qa.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Code QA Roo Cline
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
types: [opened, reopened, ready_for_review, synchronize]
8+
branches: [main]
9+
10+
jobs:
11+
code-qa:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
17+
- name: Setup Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: '18'
21+
cache: 'npm'
22+
23+
- name: Install dependencies
24+
run: npm run install:all
25+
26+
- name: Compile TypeScript
27+
run: npm run compile
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Publish Extension
2+
on:
3+
push:
4+
branches: ["main"]
5+
workflow_dispatch:
6+
7+
jobs:
8+
publish-extension:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-node@v3
13+
with:
14+
node-version: 18
15+
- run: |
16+
git config user.name github-actions
17+
git config user.email [email protected]
18+
- name: Install Dependencies
19+
run: |
20+
npm install -g vsce ovsx
21+
npm install
22+
cd webview-ui
23+
npm install
24+
cd ..
25+
- name: Package and Publish Extension
26+
env:
27+
VSCE_PAT: ${{ secrets.VSCE_PAT }}
28+
run: |
29+
current_package_version=$(node -p "require('./package.json').version")
30+
npm run vsix
31+
npm run publish:marketplace
32+
echo "Successfully published version $current_package_version to VS Code Marketplace"

.github/workflows/npm-publish.yml

Lines changed: 0 additions & 50 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## Roo Cline 2.1.2
4+
5+
- Roo Cline now publishes to the VS Code Marketplace!
6+
37
## [2.1.6]
48

59
- Add LM Studio as an API provider option (make sure to start the LM Studio server to use it with the extension!)

0 commit comments

Comments
 (0)