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

Commit

Permalink
bump to v0.3.5 (#1196)
Browse files Browse the repository at this point in the history
* update usb native

* update changelog

* fix ref tag for publishing

* fix ref tag for publishing

* change build to check version env var

* fix version spelling

* add {} to if in publish

* change version check to regex

* fix formatting

* change to multiline run

* add echo for ISPRODUCTION

* add missing s to outputs

* remove debugging echo
  • Loading branch information
adiazulay authored Feb 18, 2021
1 parent 595def8 commit e97bad8
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 53 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@ jobs:
tag: ${{ github.ref }}
overwrite: true
file_glob: true
- name: check for production tag
id: check-version
run: |
if [[ ${{ env.VERSION }} =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo ::set-output name=ISPRODUCTION::true
fi
- name: publish
if: github.ref == 'refs/tags/[0-9].[0-9].[0-9]'
if: steps.check-version.outputs.ISPRODUCTION == 'true'
run: vsce publish -p ${{ secrets.VSCE_TOKEN }}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## Version 0.3.5

- Release date: November 22, 2020

### Fixes
- Update to node-usb-native 0.0.19

## Version 0.3.4

- Release date: November 22, 2020
Expand Down
126 changes: 77 additions & 49 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"name": "vscode-arduino",
"displayName": "Arduino",
"description": "Arduino for Visual Studio Code",
"version": "0.3.4",
"version": "0.3.5",
"publisher": "vsciot-vscode",
"aiKey": "83dd2c27-6594-41d3-85a9-bdb22070eb42",
"preview": true,
"engines": {
"vscode": "^1.50.0"
"vscode": "^1.53.0"
},
"icon": "images/arduino.png",
"license": "SEE LICENSE IN LICENSE.txt",
Expand Down Expand Up @@ -582,7 +582,7 @@
"glob": "^7.1.1",
"iconv-lite": "^0.4.18",
"impor": "^0.1.1",
"node-usb-native": "^0.0.18",
"node-usb-native": "^0.0.19",
"properties": "^1.2.1",
"uuid": "^3.0.1",
"vscode-extension-telemetry": "0.1.6",
Expand Down

0 comments on commit e97bad8

Please sign in to comment.