We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 539bb6d commit a2e2f35Copy full SHA for a2e2f35
.github/workflows/run-demo.yml
@@ -29,8 +29,12 @@ jobs:
29
$exePath = Get-ChildItem -Path "./build" -Filter "SentaurSurvivors-*.exe" -Recurse | Select-Object -First 1
30
if ($exePath) {
31
Write-Output "Found executable: $($exePath.FullName)"
32
+ Write-Output "SENTRY_DSN is set: $(![string]::IsNullOrEmpty($env:SENTRY_DSN))"
33
+ Write-Output "SENTRY_DSN length: $($env:SENTRY_DSN.Length)"
34
$startTime = Get-Date
- Start-Process -FilePath $exePath -Wait -PassThru -NoNewWindow
35
+ Start-Process -FilePath $exePath -Wait -PassThru -NoNewWindow -Environment @{
36
+ SENTRY_DSN = $env:SENTRY_DSN
37
+ }
38
$endTime = Get-Date
39
$duration = $endTime - $startTime
40
Write-Output "Game finished in $($duration.ToString('hh\:mm\:ss'))"
0 commit comments