Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish VSCode extension under swarm-game everywhere #1477

Merged
merged 3 commits into from
Aug 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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