diff --git a/.gitea/workflows/build_and_puplish.yml b/.gitea/workflows/build_and_puplish.yml index 9437640..25615e6 100644 --- a/.gitea/workflows/build_and_puplish.yml +++ b/.gitea/workflows/build_and_puplish.yml @@ -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: diff --git a/CHANGELOG.md b/CHANGELOG.md index f0a157c..f019c5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,3 +9,7 @@ ## [0.1.0] - Add Hover Feature + +## [0.2.0] + +- Add DEF File Support \ No newline at end of file diff --git a/package.json b/package.json index 4ccc034..600a56c 100644 --- a/package.json +++ b/package.json @@ -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" } -} \ No newline at end of file +}