refactor(build): remove self-signing code from build script and update release notes process

This commit is contained in:
kitbyte
2026-06-28 12:08:19 +03:00
parent a7f0eae670
commit c007e11cce
4 changed files with 38 additions and 46 deletions
+34
View File
@@ -0,0 +1,34 @@
name: Build executable
on:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
cache-dependency-path: web-panel/pnpm-lock.yaml
- name: Build unsigned executable
shell: pwsh
run: ./build.ps1 -Configuration Release
- name: Upload unsigned executable
uses: actions/upload-artifact@v4
with:
name: WandEnhancer-unsigned
path: WandEnhancer/bin/Release/WandEnhancer.exe
if-no-files-found: error
+2 -4
View File
@@ -48,7 +48,5 @@ jobs:
name: ${{ github.ref_name }}
tag_name: ${{ github.ref_name }}
body_path: release-notes.md
files: |
WandEnhancer/bin/Release/WandEnhancer.exe
CHANGELOG.md
fail_on_unmatched_files: true
files: CHANGELOG.md
fail_on_unmatched_files: true