Skip to content

Commit

Permalink
upload themes in json format to github releases
Browse files Browse the repository at this point in the history
  • Loading branch information
vanyauhalin committed Nov 29, 2024
1 parent 092e646 commit 43e205f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,5 @@ jobs:
"${{github.ref_name}}"
gh release upload \
"${{github.ref_name}}" \
moondusttheme-*.json \
moondusttheme.vsix
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
!.vscode
dist
node_modules
vendor
*.vsix
moondusttheme-*.json
moondusttheme.vsix
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
},
"type": "module",
"files": [
"dist/dark.json",
"dist/light.json",
"icon.png",
"LICENSE",
"moondusttheme-far-side-of-the-moon.json",
"moondusttheme-near-side-of-the-moon.json",
"package.json",
"README.md"
],
Expand Down Expand Up @@ -64,12 +64,12 @@
{
"label": "Moondust: Near Side of the Moon",
"uiTheme": "vs",
"path": "./dist/light.json"
"path": "./moondusttheme-near-side-of-the-moon.json"
},
{
"label": "Moondust: Far Side of the Moon",
"uiTheme": "vs-dark",
"path": "./dist/dark.json"
"path": "./moondusttheme-far-side-of-the-moon.json"
}
]
},
Expand Down

0 comments on commit 43e205f

Please sign in to comment.