Skip to content

Commit

Permalink
chore: Update IntelliJ pluginId
Browse files Browse the repository at this point in the history
  • Loading branch information
theodorklauritzen committed Aug 9, 2024
1 parent 5cbb89b commit f84bf45
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<idea-plugin>
<id>ai.vespa.schemals.intellij</id>
<id>ai.vespa</id>
<name>Vespa Schema Language Support</name>

<vendor>vespa.ai</vendor>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Support for Vespa schema files.",
"author": "Vespa",
"publisher": "vespaai",
"version": "2.0.0",
"version": "2.0.1",
"engines": {
"vscode": "^1.72.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,7 @@ import { publishVSIX, createVSIX } from '@vscode/vsce';
import * as actions from '@actions/core';

async function publish(): Promise<void> {
let version = actions.getInput("version", { required: false, trimWhitespace: true });

if (version == "") {
version = "patch"
}

const version = actions.getInput("version", { required: true });

await createVSIX({
version: version
Expand Down

0 comments on commit f84bf45

Please sign in to comment.