Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thegecko committed Jan 30, 2023
1 parent c331d2d commit 6df7cc2
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 13 deletions.
41 changes: 30 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}}
2 changes: 1 addition & 1 deletion CHANGELOG.md
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

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": "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]>",
Expand Down

0 comments on commit 6df7cc2

Please sign in to comment.