Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: CI/CD Pipeline

on:
workflow_dispatch:
inputs:
reason:
description: Why are you running this?
required: false
default: Manual trigger
push:
branches:
- main
Expand Down Expand Up @@ -49,6 +55,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: vscode-extension
path: .

- name: Set up Node.js
uses: actions/setup-node@v4
Expand All @@ -58,7 +65,7 @@ jobs:
- name: Deploy to Marketplace
run: |
echo "Deploying to the marketplace..."
# Publish pre-built VSIX using the maintained @vscode/vsce package
# Publish pre-built VSIX using the @vscode/vsce package
FILE=$(ls -1 *.vsix | head -n 1)
echo "Publishing $FILE"
if [ -z "${VSCE_PAT}" ]; then
Expand Down