Skip to content

Commit f7dc0e0

Browse files
committed
Prepare release v0.2.1
1 parent ddadd85 commit f7dc0e0

File tree

5 files changed

+36
-10
lines changed

5 files changed

+36
-10
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
on:
2+
push:
3+
tags:
4+
- "*"
5+
6+
name: Deploy Extension
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
13+
with:
14+
node-version: 20
15+
- run: npm install --package-lock-only # Create package lock
16+
- run: npm ci
17+
- name: Publish to Open VSX Registry
18+
uses: HaaLeo/publish-vscode-extension@v2
19+
with:
20+
pat: ${{ secrets.OPEN_VSX_TOKEN }}
21+
skipDuplicate: true
22+
- name: Publish to Visual Studio Marketplace
23+
uses: HaaLeo/publish-vscode-extension@v2
24+
with:
25+
pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
26+
registryUrl: https://marketplace.visualstudio.com
27+
skipDuplicate: true

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v0.2.1
2+
3+
- Also available in <https://open-vsx.org/>
4+
[[Link]](https://open-vsx.org/extension/dieghernan/oksolar-theme).
5+
16
## v0.2.0
27

38
- Change accent definition to match themes.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "VS Code theme based on OKSolar by Zack Voase",
55
"publisher": "dieghernan",
66
"license": "MIT",
7-
"version": "0.2.0",
7+
"version": "0.2.1",
88
"maintainers": [
99
"dieghernan"
1010
],
@@ -16,7 +16,7 @@
1616
"url": "https://github.com/dieghernan/oksolar-theme/issues"
1717
},
1818
"engines": {
19-
"vscode": "^1.100.0"
19+
"vscode": "^1.95.0"
2020
},
2121
"categories": [
2222
"Themes"

static/icon.png

-3.57 KB
Loading

static/icon.svg

Lines changed: 2 additions & 8 deletions
Loading

0 commit comments

Comments
 (0)