Skip to content

Commit 5e4df3a

Browse files
committedMay 22, 2021
Add icon
1 parent aacfd10 commit 5e4df3a

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed
 

‎.github/workflows/release.yml

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
push:
55
branches:
66
- master
7+
release:
8+
types:
9+
- created
710

811
jobs:
912
release:
@@ -17,6 +20,7 @@ jobs:
1720
node-version: 14.x
1821
- run: npm install
1922
- run: xvfb-run -a npm test
23+
- run: npm install vsce --save-dev
2024
- name: Publish
2125
if: success() && startsWith( github.ref, 'refs/tags/releases/')
2226
run: npm run deploy

‎package.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,27 @@
33
"displayName": "Random GTIN Generator",
44
"description": "",
55
"publisher": "KemalOgunIsik",
6+
"icon": "resources/extension_icon.png",
67
"repository": {
78
"type": "git",
89
"url": "https://github.com/ogun/random-gtin-generator"
910
},
10-
"version": "0.0.1",
11+
"author": {
12+
"name": "Kemal Ogun Isik",
13+
"url": "https://github.com/ogun"
14+
},
15+
"version": "0.0.2",
1116
"engines": {
1217
"vscode": "^1.56.0"
1318
},
1419
"categories": [
1520
"Other"
1621
],
22+
"keywords": [
23+
"gtin",
24+
"gtin-14",
25+
"barcode"
26+
],
1727
"activationEvents": [
1828
"onCommand:random-gtin-generator.create"
1929
],

‎resources/extension_icon.png

9.19 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.