Skip to content

Commit

Permalink
fix: publishing vscode extension
Browse files Browse the repository at this point in the history
  • Loading branch information
wesbillman committed Sep 2, 2024
1 parent 7981045 commit 6b656b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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}} .
docker build --platform linux/amd64 -t ftl0/ftl-{{name}}:"${GITHUB_SHA:-$(git rev-parse HEAD)}" -t ftl0/ftl-{{name}}:latest -f Dockerfile.{{name}} .

0 comments on commit 6b656b9

Please sign in to comment.