Close Phase 4 overlay and Unix forwarding gaps

This commit is contained in:
Eric Wendland 2026-05-30 12:24:40 +02:00
commit b0768999db
9 changed files with 210 additions and 13 deletions

View file

@ -59,6 +59,7 @@ jobs:
mkdir -p "${pkg}" dist
cp "target/release/${{ matrix.binary }}" "${pkg}/"
cp README.md "${pkg}/"
cp -R docs "${pkg}/docs"
tar -czf "dist/${pkg}.tar.gz" "${pkg}"
- name: Package Windows artifact
@ -70,6 +71,7 @@ jobs:
New-Item -ItemType Directory -Force -Path $pkg, dist | Out-Null
Copy-Item "target/release/${{ matrix.binary }}" "$pkg/"
Copy-Item README.md "$pkg/"
Copy-Item docs "$pkg/docs" -Recurse
Compress-Archive -Path "$pkg/*" -DestinationPath "dist/$pkg.zip" -Force
- name: Upload artifact