Skip to content

Commit

Permalink
Merge branch 'release/1.3.18' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Serhioromano committed Sep 18, 2022
2 parents b16b1d5 + b996b92 commit 43b2fdb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -25,12 +25,13 @@ 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:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
"titleBar.inactiveForeground": "#e7e7e799",
"commandCenter.border": "#e7e7e799"
},
"editor.experimental.stickyScroll.enabled": true
"editor.stickyScroll.enabled": true
}
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `_`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down

0 comments on commit 43b2fdb

Please sign in to comment.