Initial commit: SuperDesign project

This commit is contained in:
史悦
2025-08-27 17:30:13 +08:00
commit a058ff225e
87 changed files with 34212 additions and 0 deletions

33
.github/workflows/publish.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: Publish Extension
on:
push:
tags:
- 'v*' # e.g., v0.1.9
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Install CLI tools
run: |
npm install -g @vscode/vsce ovsx
- name: Publish to Visual Studio Marketplace
run: vsce publish --pat ${{ secrets.VSCE_TOKEN }}
- name: Publish to Open VSX
run: ovsx publish -p ${{ secrets.OPEN_VSX_TOKEN }}