Skip to content
This repository was archived by the owner on Feb 13, 2026. It is now read-only.

Commit d7a269a

Browse files
author
Merrick Zhang
committed
fix path
1 parent 6594315 commit d7a269a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-and-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ jobs:
3838
run: |
3939
$platform = "${{ matrix.platform }}"
4040
$version = if ("${{ github.ref }}" -like "refs/tags/*") { "${{ github.ref_name }}" } else { "dev" }
41-
$outputFile = "Notepad4-${version}-${arch}.exe"
41+
$outputFile = "Notepad4-${version}-${platform}.exe"
4242
4343
makensis /DVERSION="$version" /DARCH="$platform" /DOUTPUT_FILE="$outputFile" build\Notepad4.nsi
4444
4545
- name: Upload artifacts
4646
uses: actions/upload-artifact@v4
4747
with:
4848
name: Notepad4-${{ matrix.platform }}
49-
path: Notepad4-*.exe
49+
path: build/Notepad4-*.exe
5050

5151
release:
5252
needs: build

0 commit comments

Comments
 (0)