Skip to content

Commit

Permalink
udpate:pipeleine
Browse files Browse the repository at this point in the history
Signed-off-by: shivamsouravjha <[email protected]>
  • Loading branch information
shivamsouravjha committed Sep 19, 2024
1 parent c591693 commit 73e6443
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/testarch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -47,15 +49,13 @@ jobs:
win32) vsce package --target win32-${{ matrix.arch }} ;;
esac
# Step 2: Capture the VSIX filename
- name: Capture VSIX filename
id: capture_vsix_file
run: |
VSIX_FILE=$(ls *.vsix)
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: |
Expand Down

0 comments on commit 73e6443

Please sign in to comment.