Skip to content

Commit dc310ae

Browse files
committed
Add FastFile Converter to release workflow and update version example
1 parent b05f962 commit dc310ae

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
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

@@ -60,6 +60,16 @@ jobs:
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:"
@@ -68,6 +78,8 @@ jobs:
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
@@ -91,5 +103,6 @@ jobs:
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 }}

0 commit comments

Comments
 (0)