Skip to content

Commit 09d398d

Browse files
authored
Merge pull request #3 from cyberprophet/feat/hybrid-auth-copilot
2 parents 58c3711 + 1e78248 commit 09d398d

2 files changed

Lines changed: 31 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Publish Extension
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: '20'
18+
19+
- name: Install dependencies
20+
run: npm ci
21+
22+
- name: Run tests
23+
run: npm run test:unit
24+
25+
- name: Compile
26+
run: npm run compile
27+
28+
- name: Publish to Marketplace
29+
run: npx @vscode/vsce publish -p ${{ secrets.VSCE_PAT }}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "diff-to-commit",
33
"displayName": "Diff to Commit",
44
"description": "Fill SCM commit message from git diff",
5-
"version": "0.0.1",
6-
"publisher": "local",
5+
"version": "1.0.0",
6+
"publisher": "Dayond",
77
"license": "MIT",
88
"engines": {
99
"vscode": "^1.80.0"

0 commit comments

Comments
 (0)