Skip to content

Commit 58d941f

Browse files
Publish workflow
1 parent c754a2b commit 58d941f

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/publish.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Publish Extension
2+
on:
3+
release:
4+
types: [published]
5+
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v3
12+
13+
- run: npm ci
14+
15+
- name: Publish
16+
# Will run build-prod in vscode:prepublish
17+
run: npm run publish # Pulls version and name from package.json
18+
env:
19+
VSCE_PAT: ${{ secrets.AZURE_PERSONAL_ACCESS_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "codebase-relationship-visualizer",
33
"displayName": "CodeBase Relationship Visualizer",
44
"description": "Visualize relationships between files and the codebase file system structure.",
5-
"version": "0.0.1",
5+
"version": "1.1.0",
66
"publisher": "jesse-r-s-hines",
77
"repository": "https://github.com/jesse-r-s-hines/CodeBaseRelationshipVisualizer",
88
"private": false,

0 commit comments

Comments
 (0)