first-update

This commit is contained in:
2026-03-17 14:36:31 +08:00
parent 72f08aee7c
commit 4eddf05e79
516 changed files with 115270 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
---
name: Bug report
about: Create a report to help us improve
title: '[Bug]'
labels: bug
assignees: ''
---
**注意:请务必按照此模版填写 ISSUES 信息,否则 ISSUE 将不会得到回复**
**问题描述**
清晰、简洁地描述该问题的具体情况。
**桌面设备(请完善以下信息)**
- 操作系统:[例如、Window、MAC]
- 浏览器:[例如谷歌浏览器Chrome苹果浏览器Safari]
- Easy Dataset 版本:[例如1.2.2]
**使用模型**
- 模型提供商:例如火山引擎
- 模型名称:例如 DeepSeek R1
**复现步骤**
重现该问题的操作步骤:
1. 进入“……”页面。
2. 点击“……”。
3. 向下滚动到“……”。
4. 这时会看到错误提示。
**预期结果**
清晰、简洁地描述你原本期望出现的情况。
**截图**
如果有必要,请附上截图,以便更好地说明你的问题。
**其他相关信息**
在此处添加关于该问题的其他任何相关背景信息。

View File

@@ -0,0 +1,19 @@
---
name: 'Feature or enhancement '
about: Suggest an idea for this project
title: '[Feature]'
labels: enhancement
assignees: ''
---
**你的功能请求是否与某个问题相关?请描述。**
清晰、简洁地描述一下存在的问题是什么。例如:当我[具体情况]时,我总是感到很沮丧。
**描述你期望的解决方案**
清晰、简洁地描述你希望实现的情况。
**描述你考虑过的替代方案**
清晰、简洁地描述你所考虑过的任何其他解决方案或功能。
**其他相关信息**
在此处添加与该功能请求相关的其他任何背景信息或截图。

View File

@@ -0,0 +1,40 @@
---
name: Question
about: Ask questions you want to know
title: '[Question]'
labels: question
assignees: ''
---
**注意:请务必按照此模版填写 ISSUES 信息,否则 ISSUE 将不会得到回复**
**问题描述**
清晰、简洁地描述该问题的具体情况。
**桌面设备(请完善以下信息)**
- 操作系统:[例如、Window、MAC]
- 浏览器:[例如谷歌浏览器Chrome苹果浏览器Safari]
- Easy Dataset 版本:[例如1.2.2]
**使用模型**
- 模型提供商:例如火山引擎
- 模型名称:例如 DeepSeek R1
**复现步骤**
重现该问题的操作步骤:
1. 进入“……”页面。
2. 点击“……”。
3. 向下滚动到“……”。
4. 这时会看到错误提示。
**预期结果**
清晰、简洁地描述你原本期望出现的情况。
**截图**
如果有必要,请附上截图,以便更好地说明你的问题。
**其他相关信息**
在此处添加关于该问题的其他任何相关背景信息。

View File

@@ -0,0 +1,12 @@
### 变更类型- [ ] 新功能feat
- [ ] 修复fix
- [ ] 文档docs
- [ ] 重构refactor
### 变更描述- 简要说明修改内容关联Issue#123
### 文档更新- [ ] README.md
- [ ] 贡献指南
- [ ] 接口文档(如有)

View File

@@ -0,0 +1,48 @@
name: Build and Push Docker image on Tag
on:
push:
tags:
- '*'
jobs:
docker-image-release:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/easy-dataset
tags: |
type=ref,event=tag
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max