From ccbb5782a60fa7175025f0355be0f3f01345f146 Mon Sep 17 00:00:00 2001 From: CarmJos Date: Fri, 4 Mar 2022 16:25:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=8D=A2=E6=89=93=E5=8C=85=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/bugs_report.md | 26 +++++++++++++----------- .github/ISSUE_TEMPLATE/feature_issues.md | 16 +++++++-------- .github/workflows/maven.yml | 10 ++++++--- 3 files changed, 29 insertions(+), 23 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bugs_report.md b/.github/ISSUE_TEMPLATE/bugs_report.md index 6c6a5a3..df5764a 100644 --- a/.github/ISSUE_TEMPLATE/bugs_report.md +++ b/.github/ISSUE_TEMPLATE/bugs_report.md @@ -1,30 +1,32 @@ --- name: 问题提交 -about: 描述问题并提交,帮助我们对其进行检查与修复。 +about: 提交并描述问题,帮助我们对其进行检查与修复。 title: '' labels: bug assignees: '' --- -### **问题简述** -用简短的话语描述一下大概问题。 +**问题简述** + -### **问题来源** +**问题来源** + -### **预期结果**(可选) -如果问题不发生,应该是什么情况 +**预期结果**(可选) + -### **问题截图/问题报错** -如果有报错或输出,请提供截图。 +**问题截图/问题报错** + -### *操作环境** -请在后台输入 `version` 并复制相关输出。 +**操作环境** + -### **其他补充** -如有其他补充,可以在这里描述。 +**其他补充** + diff --git a/.github/ISSUE_TEMPLATE/feature_issues.md b/.github/ISSUE_TEMPLATE/feature_issues.md index 9407bad..003f004 100644 --- a/.github/ISSUE_TEMPLATE/feature_issues.md +++ b/.github/ISSUE_TEMPLATE/feature_issues.md @@ -7,14 +7,14 @@ assignees: '' --- -### **功能简述** -简单的描述一下你想要的功能 +**功能简述** + -### **需求来源** -简单的描述一下为什么需要这个功能。 +**需求来源** + -### **功能参考**(可选) -如果有相关功能的参考,如文本、截图,请提供给我们。 +**功能参考**(可选) + -### **附加内容** -如果有什么小细节需要重点注意,请在这里告诉我们。 +**附加内容** + diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 8560f21..df7120b 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -29,10 +29,14 @@ jobs: env: MAVEN_USERNAME: ${{ github.repository_owner }} MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}} - - name: "Target Stage" - run: mkdir staging && cp target/*.jar staging + - name: "Target Staging" + run: | + mkdir artifacts + cp -vrf target/ artifacts/target/ + cp -vrf asset/*.jar artifacts + - name: "Upload artifact" uses: actions/upload-artifact@v2 with: name: Artifact - path: staging + path: artifacts \ No newline at end of file