Skip to content

Commit 48ab1d3

Browse files
committed
fix(publish): update output name for EXE artifact upload
Changed the output name from 'cfsolver.exe' to 'cfsolver' and added error handling for missing files during artifact upload.
1 parent 9e428b2 commit 48ab1d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ jobs:
9696
--no-fallback `
9797
--enable-url-protocols=http,https `
9898
-H:+ReportExceptionStackTraces `
99-
-H:Name=cfsolver `
100-
-o cfsolver.exe
99+
-o cfsolver
101100
shell: pwsh
102101

103102
- name: Upload EXE artifact
@@ -106,6 +105,7 @@ jobs:
106105
name: exe-artifacts
107106
path: cfsolver.exe
108107
retention-days: 7
108+
if-no-files-found: error
109109

110110
release:
111111
name: Create Release Draft

0 commit comments

Comments
 (0)