Skip to content

Commit 6f5f1df

Browse files
authored
Merge pull request #224 from alexa/development
2.12.1 Release
2 parents a7d3c28 + b1dfd54 commit 6f5f1df

File tree

4 files changed

+763
-1352
lines changed

4 files changed

+763
-1352
lines changed

.github/workflows/release.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# This is a workflow to publish master branch changes to VSCE
2+
name: "Release to Marketplace"
3+
4+
# Controls when the action will run when a new release is published.
5+
on:
6+
push:
7+
branches:
8+
- master
9+
10+
jobs:
11+
release:
12+
runs-on: "ubuntu-latest"
13+
steps:
14+
- name: "Checkout"
15+
uses: "actions/checkout@v2"
16+
17+
- name: "Setup NodeJS"
18+
uses: actions/setup-node@v1
19+
20+
- name: "Install Dependencies"
21+
run: "npm install"
22+
23+
- name: "Run Tests"
24+
run: "xvfb-run -a npm test"
25+
26+
- name: "Publish to Marketplace"
27+
uses: "sigma/[email protected]"
28+
with:
29+
vsce_token: ${{ secrets.VSCE_TOKEN }}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [2.12.1](https://github.com/alexa/ask-toolkit-for-vscode/compare/v2.12.0...v2.12.1) (2022-11-22)
6+
7+
8+
### Bug Fixes
9+
10+
* update dependencies for ReDoS vulnerabilities ([cbe469d](https://github.com/alexa/ask-toolkit-for-vscode/commits/cbe469d742d5748edda2053598e45b0d23359e6e))
11+
* workflow on syntax ([1d81f74](https://github.com/alexa/ask-toolkit-for-vscode/commits/1d81f74af80e9b5d8c3419317c0aaccb6052c9c5))
12+
513
## [2.12.0](https://github.com/alexa/ask-toolkit-for-vscode/compare/v2.11.3...v2.12.0) (2022-11-16)
614

715

0 commit comments

Comments
 (0)