We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2551b commit c7eb83aCopy full SHA for c7eb83a
.github/workflows/build-executables.yml
@@ -32,13 +32,13 @@ jobs:
32
33
# Step 4: Build Executables
34
- name: Build
35
- run: dotnet build
+ run: dotnet publish -c Release -r win-x64 --self-contained true /p:PublishSingleFile=true
36
37
- # Step 5: Build Executables with PyInstaller (Linux)
+ # Step 5: Check local files
38
- name: Build Executable with PyInstaller (Linux)
39
if: ${{ github.event_name != 'release' }}
40
run: |
41
- ls -l .
+ Get-ChildItem -Path . -Recurse | Format-List
42
shell: powershell
43
44
0 commit comments