@@ -62,12 +62,12 @@ jobs:
6262
6363 - name : Test install script (answer no to PATH)
6464 run : |
65- cd website/content/installnew/install_scripts
65+ cd website/public
6666 bash install_roc.sh <<< "n"
6767
6868 - name : Verify installation (no PATH)
6969 run : |
70- cd website/content/installnew/install_scripts
70+ cd website/public
7171 DIR_NAME="roc_nightly-${{ matrix.platform }}_${{ matrix.arch }}-${{ env.ROC_NIGHTLY_VERSION }}"
7272 if [ ! -d "$DIR_NAME" ]; then
7373 echo "Error: Installation directory $DIR_NAME not found"
@@ -76,18 +76,18 @@ jobs:
7676
7777 - name : Test roc binary (no PATH)
7878 run : |
79- cd website/content/installnew/install_scripts
79+ cd website/public
8080 DIR_NAME="roc_nightly-${{ matrix.platform }}_${{ matrix.arch }}-${{ env.ROC_NIGHTLY_VERSION }}"
8181 "$DIR_NAME/roc" version
8282
8383 - name : Clean up for second test
8484 run : |
85- cd website/content/installnew/install_scripts
85+ cd website/public
8686 rm -rf roc_nightly-*
8787
8888 - name : Test install script (answer yes to PATH)
8989 run : |
90- cd website/content/installnew/install_scripts
90+ cd website/public
9191 bash install_roc.sh <<< "y"
9292
9393 - name : Verify PATH was updated
@@ -135,13 +135,13 @@ jobs:
135135 env :
136136 PROCESSOR_ARCHITECTURE : ${{ matrix.proc_arch }}
137137 run : |
138- Set-Location website\content\installnew\install_scripts
138+ Set-Location website/public
139139 "n" | pwsh -ExecutionPolicy Bypass -File .\install_roc.ps1
140140
141141 - name : Verify installation (no PATH)
142142 shell : pwsh
143143 run : |
144- Set-Location website\content\installnew\install_scripts
144+ Set-Location website/public
145145 $dirName = "roc_nightly-windows_${{ matrix.arch }}-${{ env.ROC_NIGHTLY_VERSION }}"
146146 if (-not (Test-Path $dirName)) {
147147 Write-Error "❌ Installation directory $dirName not found"
@@ -153,7 +153,7 @@ jobs:
153153 if : ${{ matrix.arch == 'x86_64' }}
154154 shell : pwsh
155155 run : |
156- Set-Location website\content\installnew\install_scripts
156+ Set-Location website/public
157157 $dirName = "roc_nightly-windows_x86_64-${{ env.ROC_NIGHTLY_VERSION }}"
158158 $rocPath = Join-Path $dirName "roc.exe"
159159 if (-not (Test-Path $rocPath)) {
@@ -169,7 +169,7 @@ jobs:
169169 - name : Clean up for second test
170170 shell : pwsh
171171 run : |
172- Set-Location website\content\installnew\install_scripts
172+ Set-Location website/public
173173 Get-Item .\roc_nightly-* -ErrorAction SilentlyContinue | Remove-Item -Recurse -Force
174174 Write-Host "🧹 Cleaned up previous installation directories"
175175
@@ -178,7 +178,7 @@ jobs:
178178 env :
179179 PROCESSOR_ARCHITECTURE : ${{ matrix.proc_arch }}
180180 run : |
181- Set-Location website\content\installnew\install_scripts
181+ Set-Location website/public
182182 "y" | pwsh -ExecutionPolicy Bypass -File .\install_roc.ps1
183183
184184 - name : Verify PATH was updated
@@ -207,7 +207,7 @@ jobs:
207207 shell : pwsh
208208 run : |
209209 $dirName = "roc_nightly-windows_${{ matrix.arch }}-${{ env.ROC_NIGHTLY_VERSION }}"
210- $rocPath = Join-Path $PWD "website\content\installnew\install_scripts \$dirName\roc.exe"
210+ $rocPath = Join-Path $PWD "website/public \$dirName\roc.exe"
211211
212212 # Pull the updated user PATH and merge into current session
213213 $userPath = [System.Environment]::GetEnvironmentVariable("Path", "User")
0 commit comments