diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index bb1b1f67..fc85647f 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -36,11 +36,14 @@ jobs: projectPath: './sample' buildMethod: MacBuilder.BuildForAltTester customParameters: -logFile logFile.log -quit -batchmode - - name: Upload artifact - uses: actions/upload-artifact@v4 - with: - name: Build-StandaloneOSX - path: sample/** + - name: Open application + working-directory: sample/Builds/MacOS + run: | + export RUN_IN_BROWSERSTACK="false" + export ALTSERVER_PORT=13005 + export ALTSERVER_HOST="192.168.11.35" + chmod -R 755 sampleApp.app + open sampleApp.app - uses: actions/setup-python@v4 with: python-version: "3.10"