From e5dedcb476cee0a14716927e3ba01ab2fae2d28f Mon Sep 17 00:00:00 2001 From: Fixstars-momoko Date: Wed, 17 Jul 2024 15:04:37 -0700 Subject: [PATCH] WIP: testing installer script --- .github/workflows/develop-Windows.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/develop-Windows.yml b/.github/workflows/develop-Windows.yml index f3625c23..a1e33f69 100644 --- a/.github/workflows/develop-Windows.yml +++ b/.github/workflows/develop-Windows.yml @@ -55,15 +55,13 @@ jobs: name: install-test-for-windows path: download - - name: Unzip Artifacts + - name: Set all items under test directory run: | New-Item -ItemType Directory -Path ${{ github.workspace }}/test | Out-Null Move-Item -Path ${{ github.workspace }}/download/build/config_Windows.json -Destination ${{ github.workspace }}/test Move-Item -Path ${{ github.workspace }}/download/installer/tools/installer.ps1 -Destination ${{ github.workspace }}/test - cd download - ls - # - name: Install with the script from Artifacts - # run: | - # cd ${{ github.workspace }}/items - # powershell.exe -ExecutionPolicy Bypass -File .\installer.ps1 ${{ matrix.install_option }} \ No newline at end of file + - name: Install with the script from Artifacts + run: | + cd ${{ github.workspace }}/test + powershell.exe -ExecutionPolicy Bypass -File .\installer.ps1 ${{ matrix.install_option }} \ No newline at end of file