Skip to content

Commit c2d6956

Browse files
added cicd
1 parent 89c3364 commit c2d6956

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/workflows/publish.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Publish extension to VSC Marketplace
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout this repo
12+
uses: actions/checkout@v4
13+
- name: Set up NodeJS
14+
uses: actions/setup-node@v4
15+
with:
16+
node-version: 20
17+
- run: npm ci
18+
- name: Publish to VSC Marketplace
19+
uses: HaaLeo/publish-vscode-extension@v1
20+
with:
21+
pat: ${{ secrets.MARKETPLACE_TOKEN }}
22+
registryUrl: https://marketplace.visualstudio.com

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "prostdev-tools",
33
"displayName": "ProstDev Tools",
4+
"publisher": "ProstDev",
45
"description": "Experimental tools and utilities to ease up your MuleSoft/DataWeave programming!",
56
"version": "0.0.1",
67
"repository": {

0 commit comments

Comments
 (0)