Skip to content

Commit 72ccaa9

Browse files
seto77claude
andcommitted
Move portable README files into .github/ (declutter repo top page)
README-PORTABLE.txt and README-PORTABLE-ARM64.txt are release-packaging inputs, not user-facing repo docs. Updated the two Copy-Item references in release.yml and build-arm64-portable.yml; the file name inside the distributed ZIP (README-PORTABLE.txt) is unchanged, so the portable detection in FormMain.cs and the MSI leak checks are unaffected. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 8bd351c commit 72ccaa9

4 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/build-arm64-portable.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,9 @@ jobs:
245245
# portable 判定して Check Updates メニューを隠すため (codex レビュー指摘)
246246
Get-ChildItem $publishDir -Filter "*.pdb" | Remove-Item -Force
247247
Copy-Item "LICENSE.md" $publishDir -Force
248-
Copy-Item "README-PORTABLE-ARM64.txt" (Join-Path $publishDir "README-PORTABLE.txt") -Force
248+
# 260703Cl リポジトリトップページの整理のため README-PORTABLE*.txt を .github/ へ移動 (配布 ZIP 内の名前は不変)
249+
# 旧: Copy-Item "README-PORTABLE-ARM64.txt" (Join-Path $publishDir "README-PORTABLE.txt") -Force
250+
Copy-Item ".github/README-PORTABLE-ARM64.txt" (Join-Path $publishDir "README-PORTABLE.txt") -Force
249251
250252
# 260611Cl 自前の ZIP 化はしない: Actions artifact はダウンロード時に GitHub が必ず ZIP で包むため、
251253
# ここで ZIP を作ると二重 ZIP (2 回解凍) になる (Surface 検証で指摘)。フォルダのまま artifact に渡し、

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,9 @@ jobs:
296296
foreach ($n in $natives) { Copy-Item $n.FullName $publishDir -Force; Write-Host "Bundled native: $($n.Name)" }
297297
298298
Copy-Item "LICENSE.md" $publishDir -Force
299-
Copy-Item "README-PORTABLE.txt" $publishDir -Force
299+
# 260703Cl リポジトリトップページの整理のため README-PORTABLE*.txt を .github/ へ移動 (配布 ZIP 内の名前は不変)
300+
# 旧: Copy-Item "README-PORTABLE.txt" $publishDir -Force
301+
Copy-Item ".github/README-PORTABLE.txt" $publishDir -Force
300302
301303
# 260602Cl 参照ライブラリの分離 pdb を配布物から除去 (ReciPro 本体は embedded のため元々 pdb なし)。
302304
Get-ChildItem $publishDir -Filter "*.pdb" | Remove-Item -Force

0 commit comments

Comments
 (0)