We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1cdc5f commit 50eb481Copy full SHA for 50eb481
.github/workflows/ci-cd.yml
@@ -1,6 +1,12 @@
1
name: CI/CD Pipeline
2
3
on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ reason:
7
+ description: Why are you running this?
8
+ required: false
9
+ default: Manual trigger
10
push:
11
branches:
12
- main
@@ -49,6 +55,7 @@ jobs:
49
55
uses: actions/download-artifact@v4
50
56
with:
51
57
name: vscode-extension
58
+ path: .
52
59
53
60
- name: Set up Node.js
54
61
uses: actions/setup-node@v4
@@ -58,7 +65,7 @@ jobs:
65
- name: Deploy to Marketplace
66
run: |
67
echo "Deploying to the marketplace..."
- # Publish pre-built VSIX using the maintained @vscode/vsce package
68
+ # Publish pre-built VSIX using the @vscode/vsce package
62
69
FILE=$(ls -1 *.vsix | head -n 1)
63
70
echo "Publishing $FILE"
64
71
if [ -z "${VSCE_PAT}" ]; then
0 commit comments