Build VSCode Extension #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build VSCode Extension | |
on: | |
workflow_dispatch: | |
inputs: | |
extension-name: | |
description: name of the extension, e.g. vscode-spring-cli | |
required: true | |
type: string | |
dist: | |
description: release, pre, snapshot | |
required: false | |
type: string | |
default: snapshot | |
permissions: | |
contents: write | |
jobs: | |
build-vscode-extension: | |
runs-on: ubuntu-latest | |
name: Changelog for the release | |
steps: | |
- name: Checkout wiki code | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{github.repository}}/vscode-extensions | |
- name: Build .VSIX file | |
id: build-vsix | |
run: | | |
${{ github.workspace }}/.github/scripts/build-vscode-extension.sh ${{ inputs.extension-name }} ${{ inputs.dist }} | |
ls ./out | |