mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
Relax Windows smoke app build failures
This commit is contained in:
12
.github/workflows/desktop-release.yml
vendored
12
.github/workflows/desktop-release.yml
vendored
@@ -432,11 +432,15 @@ jobs:
|
||||
run: |
|
||||
set -euo pipefail
|
||||
app_path="packages/desktop/src-tauri/target/release/Paseo.exe"
|
||||
npm run tauri --workspace=@getpaseo/desktop build
|
||||
if [[ ! -f "$app_path" ]]; then
|
||||
echo "Expected Windows smoke app at $app_path"
|
||||
exit 1
|
||||
if npm run tauri --workspace=@getpaseo/desktop build; then
|
||||
exit 0
|
||||
fi
|
||||
if [[ -f "$app_path" ]]; then
|
||||
echo "Smoke app created at $app_path despite tauri build exiting non-zero; continuing."
|
||||
exit 0
|
||||
fi
|
||||
echo "Expected Windows smoke app at $app_path"
|
||||
exit 1
|
||||
|
||||
- name: Smoke check managed runtime for Windows
|
||||
env:
|
||||
|
||||
Reference in New Issue
Block a user