From 747329eed87db97c3ed359955906d1b285063fdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Stormacq?= Date: Wed, 12 Mar 2025 14:59:24 +0100 Subject: [PATCH] add vsce publish step --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 57bed6f..3d5846d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,5 +32,10 @@ jobs: run: npx semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - VSCE_PAT: ${{ secrets.VSCE_TOKEN }} working-directory: vscode-extension + + - name: Publish extension + run: npx vcse package && npx vcse publish + env: + VSCE_PAT: ${{ secrets.VSCE_TOKEN }} + working-directory: vscode-extension \ No newline at end of file