@@ -41,16 +41,16 @@ jobs:
41
41
- os : windows
42
42
runner : qa-windows-atlas
43
43
artifact : Windows-installer
44
- install-path : ' C:\viewer-sikulix -main'
44
+ install-path : ' C:\viewer-automation -main'
45
45
- os : windows
46
46
runner : qa-dan-asus
47
47
artifact : Windows-installer
48
- install-path : ' C:\viewer-sikulix -main'
48
+ install-path : ' C:\viewer-automation -main'
49
49
# Commented out until mac runner is available
50
50
# - os: mac
51
51
# runner: qa-mac
52
52
# artifact: Mac-installer
53
- # install-path: 'HOME/Documents/viewer-sikulix -main'
53
+ # install-path: 'HOME/Documents/viewer-automation -main'
54
54
fail-fast : false
55
55
56
56
runs-on : [self-hosted, "${{ matrix.runner }}"]
@@ -81,15 +81,15 @@ jobs:
81
81
run : |
82
82
Set-ExecutionPolicy RemoteSigned -Scope Process -Force
83
83
84
- - name : Verify viewer-sikulix -main Exists (Windows)
84
+ - name : Verify viewer-automation -main Exists (Windows)
85
85
if : matrix.os == 'windows'
86
86
shell : pwsh
87
87
run : |
88
88
if (-Not (Test-Path -Path '${{ matrix.install-path }}')) {
89
- Write-Host '❌ Error: viewer-sikulix not found on runner!'
89
+ Write-Host '❌ Error: viewer-automation folder not found on runner!'
90
90
exit 1
91
91
}
92
- Write-Host '✅ viewer-sikulix is already available .'
92
+ Write-Host '✅ viewer-automation folder is provided .'
93
93
94
94
- name : Fetch & Download Installer Artifact (Windows)
95
95
if : matrix.os == 'windows'
@@ -225,15 +225,15 @@ jobs:
225
225
echo "ARTIFACTS_URL=https://api.github.com/repos/secondlife/viewer/actions/runs/${{ github.event.workflow_run.id }}/artifacts" >> $GITHUB_ENV
226
226
fi
227
227
228
- - name : Verify viewer-sikulix -main Exists (Mac)
228
+ - name : Verify viewer-automation -main Exists (Mac)
229
229
if : matrix.os == 'mac'
230
230
shell : bash
231
231
run : |
232
232
if [ ! -d "${{ matrix.install-path }}" ]; then
233
- echo "❌ Error: viewer-sikulix not found on runner!"
233
+ echo "❌ Error: viewer-automation folder not found on runner!"
234
234
exit 1
235
235
fi
236
- echo "✅ viewer-sikulix is already available ."
236
+ echo "✅ viewer-automation is provided ."
237
237
238
238
- name : Fetch & Download Installer Artifact (Mac)
239
239
if : matrix.os == 'mac'
0 commit comments