Skip to content

Commit 37b3831

Browse files
committed
fix(ci): create PAF Ferrite directory before copying binary
Git does not track empty directories. The portable/FerriteMDPortable/App/Ferrite/ dir is empty in CI because ferrite.exe is gitignored. Add mkdir before Copy-Item. Made-with: Cursor
1 parent 9658bf6 commit 37b3831

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ jobs:
110110
Set-Content -Path portable/FerriteMDPortable/App/AppInfo/appinfo.ini -Value $appinfo -NoNewline
111111
112112
# Copy the release binary into the PAF structure
113+
New-Item -ItemType Directory -Force -Path portable\FerriteMDPortable\App\Ferrite | Out-Null
113114
Copy-Item target\release\ferrite.exe portable\FerriteMDPortable\App\Ferrite\ferrite.exe
114115
115116
# Compile the .paf.exe installer with NSIS

0 commit comments

Comments
 (0)