Skip to content

Commit

Permalink
Publish VSCode extension under swarm-game everywhere (#1477)
Browse files Browse the repository at this point in the history
* move the VSCode extension under "swarm-game" organisation
* add Open VSX Registry to "Deploy Extension" GitHub Action
* bump version, so it gets pushed once tagged
* closes #1453
  • Loading branch information
xsebek authored Aug 28, 2023
1 parent bfc0c14 commit 7cd7bde
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/vscode-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,9 @@ jobs:
with:
packagePath: editors/vscode
pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
registryUrl: https://marketplace.visualstudio.com
registryUrl: https://marketplace.visualstudio.com
- name: Publish to Open VSX Registry
uses: HaaLeo/publish-vscode-extension@v1
with:
packagePath: editors/vscode
pat: ${{ secrets.VSX_MARKETPLACE_TOKEN }}
5 changes: 2 additions & 3 deletions editors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ LSP client. That is if you have `swarm` executable in PATH, then
the executable will be used as LSP server to show errors as you type.

You can get it by:
- installing from MS marketplace ([link](https://marketplace.visualstudio.com/items?itemName=xsebek.swarm-language))
- installing from the MS marketplace ([link](https://marketplace.visualstudio.com/items?itemName=swarm-game.swarm-language))
- installing from the Open VSX Registry ([link](https://open-vsx.org/extension/swarm-game/swarm-language))
- building from source in the [vscode folder](./vscode/DEVELOPING.md)
- **TBD** get the VSIX from GitHub releases
- **TBD** installing from the VS codium free marketplace

### YAML schema validation

Expand Down
3 changes: 3 additions & 0 deletions editors/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to the "swarm-language" extension will be documented in this file.

## version 0.1.1
- Move the extension under "swarm-game" org

## version 0.0.9
- [Highlighter] add `unit` and `actor` types
- [Highlighter] add many new commands:
Expand Down
4 changes: 2 additions & 2 deletions editors/vscode/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "VSCode part of the swarm language server",
"author": "Ondřej Šebek",
"license": "MIT",
"version": "0.0.3",
"publisher": "xsebek",
"version": "0.1.1",
"publisher": "swarm-game",
"repository": {
"type": "git",
"url": "https://github.com/swarm-game/swarm"
Expand Down
4 changes: 2 additions & 2 deletions editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "swarm-language",
"displayName": "swarm-language",
"description": "VSCode support for swarm (the game) programming language.",
"version": "0.0.9",
"version": "0.1.1",
"icon": "images/swarm-logo.png",
"publisher": "xsebek",
"publisher": "swarm-game",
"repository": {
"url": "https://github.com/swarm-game/swarm"
},
Expand Down

0 comments on commit 7cd7bde

Please sign in to comment.