From 30f60f7e45a926e651607b0781afde86251c896e Mon Sep 17 00:00:00 2001 From: SONIABHISHEK121 Date: Sat, 3 Aug 2024 19:42:51 +0530 Subject: [PATCH] updated path to the copy folder Signed-off-by: SONIABHISHEK121 --- .github/workflows/windows-installer.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/windows-installer.yml b/.github/workflows/windows-installer.yml index e427a313..e4b21569 100644 --- a/.github/workflows/windows-installer.yml +++ b/.github/workflows/windows-installer.yml @@ -164,11 +164,10 @@ jobs: - name: Copy VBS files to dist folder run: | - Copy-Item .\ejemplos\pyi25\pyi25.vbs .\dist\ -ErrorAction Stop - Copy-Item .\ejemplos\pyqr\pyqr.vbs .\dist\ -ErrorAction Stop - Copy-Item .\ejemplos\factura_electronica.vbs .\dist\ -ErrorAction Stop - Copy-Item .\ejemplos\remito_electronico_carnico.vbs .\dist\ -ErrorAction Stop - + Get-ChildItem -Recurse .\ejemplos | Where-Object {$_.Name -like "*.vbs"} | ForEach-Object { + Copy-Item $_.FullName .\dist\ -ErrorAction Stop + } + - name: Test pyi25.vbs run: | .\tests\test_pyi25.ps1