Skip to content

Commit

Permalink
Update names
Browse files Browse the repository at this point in the history
  • Loading branch information
hellovai committed Oct 18, 2024
1 parent d1be482 commit 962033a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-vscode-release.reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ jobs:
- name: Install Dependencies
run: pnpm install --frozen-lockfile
working-directory: typescript/

- name: Build Typescript Project
run: pnpm run build
run: pnpm turbo vscode:package
working-directory: typescript/

# Build the VSCode Extension
- name: Build VSCode Extension
id: build
run: |
pnpm run vscode:package
VERSION=$(cat package.json| grep version | cut -d ' ' -f 4 | sed 's/[",]//g')
echo "version=$VERSION" >> $GITHUB_OUTPUT
working-directory: typescript/vscode-ext/packages
Expand All @@ -56,7 +56,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: baml-vscode.vsix
path: typescript/vscode-ext/packages/Gloo-${{ steps.build.outputs.version }}.vsix
path: typescript/vscode-ext/packages/gloo-${{ steps.build.outputs.version }}.vsix
if-no-files-found: error

# Upload the artifact (helpful for debugging and manual downloads)
Expand Down
2 changes: 1 addition & 1 deletion typescript/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"dependsOn": ["@gloo-ai/baml-language-server#build"],
"outputs": ["out/**"]
},
"baml#vscode:package": {
"gloo#vscode:package": {
"dependsOn": ["baml-client#build"],
"outputs": ["baml-*.vsix"]
},
Expand Down
2 changes: 1 addition & 1 deletion typescript/vscode-ext/packages/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Gloo",
"name": "gloo",
"displayName": "Baml",
"description": "BAML is a DSL for AI applications.",
"version": "0.61.1",
Expand Down

0 comments on commit 962033a

Please sign in to comment.