File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 workflow_dispatch : # Allows manual trigger from GitHub UI
88 inputs :
99 version :
10- description : ' Version tag (e.g., v2.1 .0)'
10+ description : ' Version tag (e.g., v3.0 .0)'
1111 required : true
1212 type : string
1313
6060 -p:IncludeNativeLibrariesForSelfExtract=true `
6161 -o ./publish-tool
6262
63+ - name : Build and Publish FastFile Converter GUI
64+ run : |
65+ dotnet publish "FastFileConverterGUI/FastFileConverterGUI.csproj" `
66+ -c Release `
67+ -r win-x64 `
68+ --self-contained false `
69+ -p:PublishSingleFile=true `
70+ -p:IncludeNativeLibrariesForSelfExtract=true `
71+ -o ./publish-converter
72+
6373 - name : List published files
6474 run : |
6575 Write-Host "Main Editor:"
6878 Get-ChildItem -Path ./publish-compiler -Recurse
6979 Write-Host "Tool GUI:"
7080 Get-ChildItem -Path ./publish-tool -Recurse
81+ Write-Host "Converter GUI:"
82+ Get-ChildItem -Path ./publish-converter -Recurse
7183
7284 - name : Get version from tag
7385 id : get_version
91103 ./publish/Call of Duty FastFile Editor.exe
92104 ./publish-compiler/FastFileCompilerGUI.exe
93105 ./publish-tool/FastFileToolGUI.exe
106+ ./publish-converter/FastFileConverterGUI.exe
94107 env :
95108 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments