From 73e6443cc1343c15d9bb9585c0009992fa686d6d Mon Sep 17 00:00:00 2001 From: shivamsouravjha <2019145@iiitdmj.ac.in> Date: Thu, 19 Sep 2024 17:57:53 +0530 Subject: [PATCH] udpate:pipeleine Signed-off-by: shivamsouravjha <2019145@iiitdmj.ac.in> --- .github/workflows/testarch.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/testarch.yml b/.github/workflows/testarch.yml index 9b5e75e..1ba1710 100644 --- a/.github/workflows/testarch.yml +++ b/.github/workflows/testarch.yml @@ -38,7 +38,9 @@ jobs: - name: List contents of out/compiled directory (for debugging) run: ls -R out/compiled - # Step 1: Package the extension for the appropriate target + - name: Install vsce + run: npm install -g @vscode/vsce + - name: Package VSIX for the target platform run: | case "${{ matrix.os }}" in @@ -47,7 +49,6 @@ jobs: win32) vsce package --target win32-${{ matrix.arch }} ;; esac - # Step 2: Capture the VSIX filename - name: Capture VSIX filename id: capture_vsix_file run: | @@ -55,7 +56,6 @@ jobs: echo "VSIX_FILE=$VSIX_FILE" >> $GITHUB_ENV shell: bash - # Step 3: Print VSIX filename - name: Print VSIX filename id: print_vsix_file # Renamed to be unique run: |