Skip to content

Commit 6d0b2c6

Browse files
committed
put assets in correct dir
1 parent 9242792 commit 6d0b2c6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ jobs:
8888
python scripts/stage_release.py windows . --zip
8989
9090
- name: Test Windows Package
91-
run: ./vkrt-windows-x64/bin/vkrt.exe --help && ./vkrt-windows-x64/bin/vkrt.exe --version
9291
shell: bash
92+
run: ./vkrt-windows-x64/bin/vkrt.exe --help && ./vkrt-windows-x64/bin/vkrt.exe --version
9393

9494
- name: Upload Windows Release Asset
9595
if: github.ref_type == 'tag'

scripts/stage_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def main():
7575
bin_dir.mkdir(parents=True, exist_ok=True)
7676
shutil.copy2(binary_path, bin_dir / binary_name)
7777
copy_runtime_files(bin_dir, runtime_patterns)
78-
shutil.copytree(ROOT / "assets", bin_dir / "assets", symlinks=True)
78+
shutil.copytree(ROOT / "assets", bundle_dir / "assets", symlinks=True)
7979
else:
8080
bin_dir = bundle_dir / "bin"
8181
lib_dir = bundle_dir / "lib"

0 commit comments

Comments
 (0)