diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 61c26af..323f0f4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,13 +5,13 @@ name: Publish on: push: - tags: + tags: - v* jobs: publish: name: Publish VS Code Extension runs-on: ubuntu-latest - + steps: - name: Checkout Tag uses: actions/checkout@v2 @@ -25,7 +25,7 @@ jobs: - name: Install NPM Packages run: | npm ci - npm install -g vsce + npm install -g vsce ovsx - run: vsce publish -p ${{ secrets.VSCE_TOKEN }} - name: Generate Package and Create Release env: @@ -33,4 +33,5 @@ jobs: run: | vsce package file=$(realpath $(ls -t *.vsix | head -1)) + ovsx publish $file -p ${{ secrets.OVSX_TOKEN }} gh release create '${{ github.ref_name }}' -n "See [Changelog](https://github.com/Serhioromano/vscode-gitflow/blob/master/CHANGELOG.md) for details." $file diff --git a/.vscode/settings.json b/.vscode/settings.json index ded4b6e..e9dcd69 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -51,5 +51,5 @@ "titleBar.inactiveForeground": "#e7e7e799", "commandCenter.border": "#e7e7e799" }, - "editor.experimental.stickyScroll.enabled": true + "editor.stickyScroll.enabled": true } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d7248f..22446e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,9 @@ All notable changes to the "gitflow" extension will be documented in this file. -## [1.3.11] 06/12/2022 +## [1.3.18] 06/12/2022 +- add - publish to OVSX. - enhance - Branch name creation now is checked through `git check-ref-format --branch ***` with allows create any qualified branch name. ## [1.3.10] 05/25/2022 diff --git a/README.md b/README.md index de51da0..d5f4693 100644 --- a/README.md +++ b/README.md @@ -179,7 +179,8 @@ GitHub CLI will automatically store your Git credentials for you when you choose ## Changelog -- 1.3.11 +- 1.3.18 + - add - publish to OVSX. - enhance - Branch name creation now is checked through `git check-ref-format --branch ***` with allows create any qualified branch name. - add - Option to automatically bump version on release or not. - add - replace spaces in branch name with `_` diff --git a/package.json b/package.json index 7bf8b9e..5ae6cbc 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-gitflow", "displayName": "Git Flow", "description": "Git-Flow support for VS Code", - "version": "1.3.17", + "version": "1.3.18", "engines": { "vscode": "^1.64.0" },