Skip to content

Vespa Schema LSP - Deploy extension #22

Vespa Schema LSP - Deploy extension

Vespa Schema LSP - Deploy extension #22

Workflow file for this run

name: Vespa Schema LSP - Deploy extension
on:
workflow_dispatch:
inputs:
version:
type: choice
description: Which kind of release is this
required: true
options:
- major
- minor
- patch
jobs:
lspDeploy:
name: Vespa Schema LSP Deployment Job
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: "17"
distribution: "temurin"
cache: maven
- name: Build Vespa
run: |
export MAVEN_OPTS="-Xms128m -Xmx1024m"
./bootstrap.sh java
mvn install --threads 1C
working-directory: ./
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Download node dependencies
run: npm ci
working-directory: ./integration/schema-language-server/clients/vscode
# - name: Publish VScode extension
# run: npm run publish
# working-directory: ./integration/schema-language-server/clients/vscode
# env:
# VSCE_PAT: ${{ secrets.VSCE_PAT }}
# VERSION_TYPE: ${{ github.event.inputs.version }}
- name: Retrieve version
id: retrieve_version
run: |
python3 bumpVersion.py
echo "VERSION=$(cat VERSION)" >> $GITHUB_OUTPUT
working-directory: ./integration/schema-language-server/clients/intellij
# - name: Publish IntelliJ plugin
# run: |
# gradle buildPlugin
# curl -i --header "Authorization: Bearer $INTELLIJ_PLUGIN_PERM" -F pluginId=$PLUGIN_ID -F file=@./build/distributions/vespa-$VERSION.zip https://plugins.jetbrains.com/plugin/uploadPlugin
# working-directory: ./integration/schema-language-server/clients/intellij
# env:
# VERSION: ${{ steps.retrieve_version.outputs.VERSION }}
# INTELLIJ_PLUGIN_PERM: ${{ secrets.INTELLIJ_PLUGIN_PERM }}
# PLUGIN_ID: 18074
- name: Prepare Github Release
working-directory: ./integration/schema-language-server
run: |
mkdir -p ./clients/github-release/target
cp ./language-server/target/schema-language-server-jar-with-dependencies.jar ./clients/github-release/target/vespa-language-server_$VERSION.jar
env:
VERSION: ${{ steps.retrieve_version.outputs.VERSION }}
- name: Create Github Release
uses: ncipollo/release-action@v1
with:
draft: true
tag: v${{ steps.retrieve_version.outputs.VERSION }}
name: Vespa Langauge Server ${{ steps.retrieve_version.outputs.VERSION }}
token: ${{ secrets.GITHUB_TOKEN }}
bodyFile: ./integration/schema-language-server/clients/github-release/README.md
artifacts: ./integration/schema-language-server/clients/github-release/target/vespa-language-server_${{ steps.retrieve_version.outputs.VERSION }}.jar
artifactContentType: application/java-archive
# Disabling as it is disallowed by org for now
# - name: Create PR to bump version
# uses: peter-evans/create-pull-request@v6
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# commit-message: "Update Vespa Language Server VSCode extension version"
# title: "Bump Vespa Language Server version"
# body: "This PR updates the Vespa Language Server VSCode extension"
# branch: "interns/languageserver-bump-version"
# base: "master"
# labels: "Language server"