Skip to content

Commit c7eb83a

Browse files
committed
ci: update build-executables.yml to use dotnet publish and improve file listing
1 parent 5e2551b commit c7eb83a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-executables.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232

3333
# Step 4: Build Executables
3434
- name: Build
35-
run: dotnet build
35+
run: dotnet publish -c Release -r win-x64 --self-contained true /p:PublishSingleFile=true
3636

37-
# Step 5: Build Executables with PyInstaller (Linux)
37+
# Step 5: Check local files
3838
- name: Build Executable with PyInstaller (Linux)
3939
if: ${{ github.event_name != 'release' }}
4040
run: |
41-
ls -l .
41+
Get-ChildItem -Path . -Recurse | Format-List
4242
shell: powershell
4343

4444

0 commit comments

Comments
 (0)