develop_def_syntax #4

Merged
Christoph merged 3 commits from develop_def_syntax into main 2025-01-13 15:23:56 +00:00
3 changed files with 9 additions and 5 deletions
Showing only changes of commit 9a971c1c1c - Show all commits
+3 -3
View File
@@ -26,11 +26,11 @@ jobs:
run: npm version ${{ github.ref_name }} --no-git-tag-version
- name: Commit and Push Changes
run: |
git config user.name "${{ USERNAME_GIT }}"
git config user.email "${{ EMAIL_GIT }}"
git config user.name "${{ vars.USERNAME_GIT }}"
git config user.email "${{ vars.EMAIL_GIT }}"
git add package.json
git commit -m "Update version to ${{ github.ref_name }}"
git push origin HEAD
git push origin HEAD:main
- name: Publish to Visual Studio Marketplace
run: vsce publish
env:
+4
View File
@@ -9,3 +9,7 @@
## [0.1.0]
- Add Hover Feature
## [0.2.0]
- Add DEF File Support
+2 -2
View File
@@ -2,7 +2,7 @@
"name": "vscode-cdl-support",
"displayName": "vscode-cdl-support",
"description": "",
"version": "0.1.0",
"version": "0.2.0",
"publisher": "Christoph",
"repository": {
"type": "git",
@@ -70,4 +70,4 @@
"typescript": "^5.7.2",
"vite": "^6.0.7"
}
}
}