Adjust install path for new repo name

master
AtlasLinden 2025-05-08 06:41:29 -07:00 committed by GitHub
parent 8c5df1ad9d
commit 147442c240
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 9 deletions

View File

@ -41,16 +41,16 @@ jobs:
- os: windows
runner: qa-windows-atlas
artifact: Windows-installer
install-path: 'C:\viewer-sikulix-main'
install-path: 'C:\viewer-automation-main'
- os: windows
runner: qa-dan-asus
artifact: Windows-installer
install-path: 'C:\viewer-sikulix-main'
install-path: 'C:\viewer-automation-main'
# Commented out until mac runner is available
# - os: mac
# runner: qa-mac
# artifact: Mac-installer
# install-path: 'HOME/Documents/viewer-sikulix-main'
# install-path: 'HOME/Documents/viewer-automation-main'
fail-fast: false
runs-on: [self-hosted, "${{ matrix.runner }}"]
@ -81,15 +81,15 @@ jobs:
run: |
Set-ExecutionPolicy RemoteSigned -Scope Process -Force
- name: Verify viewer-sikulix-main Exists (Windows)
- name: Verify viewer-automation-main Exists (Windows)
if: matrix.os == 'windows'
shell: pwsh
run: |
if (-Not (Test-Path -Path '${{ matrix.install-path }}')) {
Write-Host '❌ Error: viewer-sikulix not found on runner!'
Write-Host '❌ Error: viewer-automation folder not found on runner!'
exit 1
}
Write-Host '✅ viewer-sikulix is already available.'
Write-Host '✅ viewer-automation folder is provided.'
- name: Fetch & Download Installer Artifact (Windows)
if: matrix.os == 'windows'
@ -225,15 +225,15 @@ jobs:
echo "ARTIFACTS_URL=https://api.github.com/repos/secondlife/viewer/actions/runs/${{ github.event.workflow_run.id }}/artifacts" >> $GITHUB_ENV
fi
- name: Verify viewer-sikulix-main Exists (Mac)
- name: Verify viewer-automation-main Exists (Mac)
if: matrix.os == 'mac'
shell: bash
run: |
if [ ! -d "${{ matrix.install-path }}" ]; then
echo "❌ Error: viewer-sikulix not found on runner!"
echo "❌ Error: viewer-automation folder not found on runner!"
exit 1
fi
echo "✅ viewer-sikulix is already available."
echo "✅ viewer-automation is provided."
- name: Fetch & Download Installer Artifact (Mac)
if: matrix.os == 'mac'