-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## 变化 - 优化了组件的悬停提示 - 增加了 Page 组件 - 增加了 Drawer 组件 - 增加了 Scroll View 组件 - 增加了 Card 组件 - 增加了 Search 组件 - 增加了 Carousel 组件 - 增加了 Tab 组件 - 增加了 Navigation 组件 - 增加了 Appbar 组件 - 增加了 Dialog 组件 - 增加了 Popup 组件 - 增加了 Popup Menu 组件 - 增加了 Snackbar 组件 - 增加了 Tooltip 组件 - 增加了 Badge 组件 - 增加了 Chip 组件 - 增加了 Table 组件 - 修正了工作流无法打包的问题 ### 新的合作者 * @Minemetero made their first contribution in #4 **Full Changelog**: https://github.com/lingbopro/soberjs-vscode/blob/dev/CHANGELOG.md --------- Co-authored-by: Minemetero <[email protected]> Co-authored-by: Minemetero <[email protected]>
- Loading branch information
1 parent
d77b556
commit c988ad8
Showing
9 changed files
with
594 additions
and
88 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- dev | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: ['22.x'] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Get Extension Version | ||
shell: bash | ||
run: | | ||
echo "extensionVersion=$(node -p "require('./package.json').version")" >> $GITHUB_ENV | ||
- name: Package VS Code extension | ||
id: package | ||
uses: nhedger/package-vscode-extension@main #放心版本号是和打包是你写的版本号一致 路径都是一样版本号变一下就行 | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: soberjs-vscode-${{ env.extensionVersion }}.vsix | ||
path: /home/runner/work/soberjs-vscode/soberjs-vscode/soberjs-vscode-${{ env.extensionVersion }}.vsix | ||
compression-level: 0 | ||
if-no-files-found: error | ||
|
||
# 既然发布不了就别发布了 | ||
# - name: Release #这里有些问题发布不了,不过你可以从artifact下载 | ||
# uses: softprops/action-gh-release@v2 | ||
# if: startsWith(github.ref, 'refs/tags/') | ||
# with: | ||
# tag_name: ${{ env.extensionVersion }} | ||
# name: ${{ env.extensionVersion }} | ||
# body_path: CHANGELOG.md | ||
# draft: false | ||
# prerelease: false | ||
# files: | #注意!!!每次更新必须手动更新版本号 | ||
# /home/runner/work/soberjs-vscode/soberjs-vscode/soberjs-vscode-${{ env.extensionVersion }}.vsix |
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
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
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
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
Oops, something went wrong.