-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,10 @@ jobs: | |
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v2 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14.x | ||
- name: Build | ||
|
@@ -29,37 +29,56 @@ jobs: | |
yarn install --ignore-scripts | ||
yarn build | ||
yarn package | ||
- uses: actions/upload-artifact@v2 | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: vsix-package | ||
path: ./*.vsix | ||
retention-days: 1 | ||
|
||
release: | ||
needs: build | ||
name: Release | ||
name: Create Release | ||
runs-on: ubuntu-latest | ||
if: startsWith(github.ref, 'refs/tags/') | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/download-artifact@v2 | ||
- uses: actions/checkout@v3 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
path: artifacts | ||
- uses: softprops/action-gh-release@v1 | ||
with: | ||
files: artifacts/*/*.vsix | ||
|
||
publish: | ||
publish-open-vsx-registry: | ||
needs: build | ||
name: Publish | ||
name: Open VSX | ||
runs-on: ubuntu-latest | ||
if: startsWith(github.ref, 'refs/tags/') | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/download-artifact@v2 | ||
- uses: actions/checkout@v3 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
path: artifacts | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14.x | ||
- name: Publish | ||
run: | | ||
npx [email protected] publish -i artifacts/*/*.vsix -p ${{secrets.OPEN_VSX_TOKEN}} | ||
publish-vscode-marketplace: | ||
needs: build | ||
name: VS Code Marketplace | ||
runs-on: ubuntu-latest | ||
if: startsWith(github.ref, 'refs/tags/') | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
path: artifacts | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14.x | ||
- name: Publish | ||
run: | | ||
npx ovsx publish -i artifacts/*/*.vsix -p ${{secrets.OPEN_VSX_TOKEN}} | ||
npx vsce publish -i artifacts/*/*.vsix -p ${{secrets.VS_MARKETPLACE_TOKEN}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Change Log | ||
|
||
## [v1.1.0] - 2023-01-30 | ||
## [v1.1.1] - 2023-01-30 | ||
|
||
### New Features | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "svd-viewer", | ||
"displayName": "SVD Viewer", | ||
"description": "Standalone SVD Viewer extension extracted from cortex-debug", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"preview": true, | ||
"publisher": "cortex-debug", | ||
"author": "Rob Moran <[email protected]>", | ||
|