Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit d351722

Browse files
authored
Merge pull request #1386 from microsoft/dev
Bump to v0.4.8
2 parents fedfad1 + 7127c78 commit d351722

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

.github/workflows/build.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ jobs:
9292
- name: scripts
9393
run: |
9494
gulp tslint
95+
gulp genAikey
9596
vsce package
9697
- name: upload .vsix to github tag
9798
uses: svenstaro/upload-release-action@v2
@@ -107,8 +108,11 @@ jobs:
107108
if [[ ${{ env.VERSION }} =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
108109
echo ::set-output name=ISPRODUCTION::true
109110
fi
111+
# Skip attempting to publish for now, because I can't figure out how to
112+
# generate a valid VSCE_TOKEN. Instead we can manually publish by uploading
113+
# the release build artifact to the extension publisher site.
110114
- name: publish
111-
if: steps.check-version.outputs.ISPRODUCTION == 'true'
115+
if: false && steps.check-version.outputs.ISPRODUCTION == 'true'
112116
env:
113117
PROD_AIKEY: ${{ secrets.PROD_AIKEY }}
114118
run: |

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## Version 0.4.8
5+
6+
- Release date: November 9, 2021
7+
8+
### Changed
9+
10+
- Fix application insights key [31dd3a9](https://github.com/microsoft/vscode-arduino/commit/31dd3a94c64eb12a5483038c5bfe668abad36f91)
11+
412
## Version 0.4.7
513

614
- Release date: November 5, 2021

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ gulp.task("clean", (done) => {
106106

107107
gulp.task("genAikey", (done) => {
108108
const packageJson = JSON.parse(fs.readFileSync("package.json"));
109-
packageJson.aiKey = process.env.PROD_AIKEY;
109+
packageJson.aiKey = "f1e4de2f-62b0-45e1-b36e-9216f21bd08e";
110110
fs.writeFileSync("package.json", JSON.stringify(packageJson, null, 2) + "\n");
111111
done();
112112
});

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-arduino",
33
"displayName": "Arduino",
44
"description": "Arduino for Visual Studio Code",
5-
"version": "0.4.7",
5+
"version": "0.4.8-rc",
66
"publisher": "vsciot-vscode",
77
"aiKey": "83dd2c27-6594-41d3-85a9-bdb22070eb42",
88
"preview": true,

0 commit comments

Comments
 (0)