Skip to content

Commit

Permalink
Update publish.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
LPeter1997 committed Dec 14, 2023
1 parent 5b296ce commit e86bf89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ on:
description: Deploy components of the SDK (Compiler, Toolset, Sdk, ProjectTemplates)
deploy-langserver:
type: boolean
description: Deploy the language server (Compiler, LanguageServer)
description: Deploy the language server (Compiler, LanguageServer, Lsp)
deploy-debugadapter:
type: boolean
description: Deploy the debug adapter (DebugAdapter)
description: Deploy the debug adapter (DebugAdapter, Dap)
deploy-vscext:
type: boolean
description: Deploy the VS Code extension
Expand Down Expand Up @@ -58,8 +58,8 @@ jobs:
run: |
cd src
$sdkProjects = "Compiler", "Compiler.Toolset", "Sdk", "ProjectTemplates"
$langserverProjects = "Compiler", "LanguageServer"
$debugadapterProjects = @("DebugAdapter")
$langserverProjects = "Compiler", "LanguageServer", "Lsp"
$debugadapterProjects = "DebugAdapter", "Dap"
$projects = @()
if ($${{ github.event.inputs.deploy-sdk }}) { $projects += $sdkProjects; }
Expand Down

0 comments on commit e86bf89

Please sign in to comment.