diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7c1becc4..0819ae84f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -161,22 +161,17 @@ jobs: with: path: ${{ github.workspace }}/go/src/github.com/siyuan-note/siyuan/app/kernel-linux - - name: Remove Kernel Directory for Windows 32bit - uses: JesseTG/rm@v1.0.2 - with: - path: ${{ github.workspace }}/go/src/github.com/siyuan-note/siyuan/app/kernel32 - - name: Remove Kernel Directory for Windows uses: JesseTG/rm@v1.0.2 with: path: ${{ github.workspace }}/go/src/github.com/siyuan-note/siyuan/app/kernel - - name: Remove Kernel Directory for Mac + - name: Remove Kernel Directory for macOS uses: JesseTG/rm@v1.0.2 with: path: ${{ github.workspace }}/go/src/github.com/siyuan-note/siyuan/app/kernel-darwin - - name: Remove Kernel Directory for Mac M1 + - name: Remove Kernel Directory for macOS ARM64 uses: JesseTG/rm@v1.0.2 with: path: ${{ github.workspace }}/go/src/github.com/siyuan-note/siyuan/app/kernel-darwin-arm64 diff --git a/scripts/parse-changelog.py b/scripts/parse-changelog.py index 3104f7ba9..0bad77e2a 100644 --- a/scripts/parse-changelog.py +++ b/scripts/parse-changelog.py @@ -6,11 +6,11 @@ from collections import defaultdict import github docmap = { + "Feature": "引入特性", "Enhancement": "改进功能", + "Bug": "修复缺陷", "Document": "文档相关", "Refactor": "开发重构", - "Bug": "修复缺陷", - "Feature": "引入特性", "Abolishment": "移除功能" } diff --git a/scripts/win-build.bat b/scripts/win-build.bat index 2b20ac057..91e7e34cf 100644 --- a/scripts/win-build.bat +++ b/scripts/win-build.bat @@ -7,7 +7,6 @@ cd .. echo 'Cleaning Builds' del /S /Q /F app\build 1>nul del /S /Q /F app\kernel 1>nul -del /S /Q /F app\kernel32 1>nul echo 'Building Kernel' go version