From 6b656b9679e04646a1e5bcf1bac8d8c03bc281a3 Mon Sep 17 00:00:00 2001 From: Wes Date: Fri, 30 Aug 2024 09:05:14 -0700 Subject: [PATCH] fix: publishing vscode extension --- .github/workflows/release.yml | 2 -- Justfile | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b18bc122f..99ccaf72db 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -163,8 +163,6 @@ jobs: git push origin main vscode-release: name: Release VSCode Extension - # Disabled for now as it's broken. - if: false runs-on: ubuntu-latest steps: - name: Checkout code diff --git a/Justfile b/Justfile index c1bcd4642d..89fa06eeb4 100644 --- a/Justfile +++ b/Justfile @@ -95,11 +95,11 @@ install-extension: build-extension # Build and package the VSCode extension package-extension: build-extension - @cd extensions/vscode && vsce package + @cd extensions/vscode && vsce package --no-dependencies # Publish the VSCode extension publish-extension: package-extension - @cd extensions/vscode && vsce publish + @cd extensions/vscode && vsce publish --no-dependencies build-intellij-plugin: @cd extensions/intellij && gradle buildPlugin @@ -245,4 +245,4 @@ storybook: # Build an FTL Docker image. build-docker name: - docker build --platform linux/amd64 -t ftl0/ftl-{{name}}:"${GITHUB_SHA:-$(git rev-parse HEAD)}" -t ftl0/ftl-{{name}}:latest -f Dockerfile.{{name}} . \ No newline at end of file + docker build --platform linux/amd64 -t ftl0/ftl-{{name}}:"${GITHUB_SHA:-$(git rev-parse HEAD)}" -t ftl0/ftl-{{name}}:latest -f Dockerfile.{{name}} .