-
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.
- Loading branch information
Showing
5 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
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,22 @@ | ||
--- | ||
name: Bug report / 错误报告 | ||
about: Create a report to help us improve / 创建报告以帮助我们改进 | ||
title: "[bug] " | ||
labels: bug | ||
--- | ||
|
||
<!-- | ||
请提供下述完整信息以便快速定位问题 / Please provide the following information to quickly locate the problem | ||
--> | ||
|
||
- 系统环境 / System Environment: | ||
|
||
|
||
- 版本号 / Version: | ||
|
||
|
||
- 问题描述 / Description of the issue: | ||
|
||
|
||
- 复现步骤 / Reproduction steps: | ||
|
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,7 @@ | ||
--- | ||
name: Feel free to express / 随便写写 | ||
about: Record something / 简单写写记录记录 | ||
--- | ||
|
||
- Feel free to express yourself / 请自由发挥 | ||
|
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,9 @@ | ||
--- | ||
name: I have a question / 我有疑问 | ||
about: Solve your problem / 解决你的疑问 | ||
title: "[question] " | ||
labels: question | ||
--- | ||
|
||
- Problem Description / 问题描述 | ||
|
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,9 @@ | ||
--- | ||
name: I have suggestions / 我有建议 | ||
about: Your suggestions may benefit everyone / 你的建议可能让所有人受益 | ||
title: "[suggestion] " | ||
labels: suggestion | ||
--- | ||
|
||
- Your suggestions / 你的建议 | ||
|
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,39 @@ | ||
name: pack | ||
|
||
on: | ||
release: | ||
types: [created] | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Setup Windows SDK | ||
uses: GuillaumeFalourd/[email protected] | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
|
||
- name: Pack | ||
run: dotnet pack src\Flurib\Flurib.csproj -c Release --no-build -o out | ||
|
||
- name: Push NuGet package | ||
# run: dotnet nuget push "out\*.nupkg" -k ${{secrets.NUGET_AUTH_TOKEN}} --source https://api.nuget.org/v3/index.json | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: nuget-packages | ||
path: out/*.nupkg |