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 96e1d82 commit 01bedf8Copy full SHA for 01bedf8
scripts/compile_resources.ps1
@@ -10,6 +10,11 @@ pyside6-rcc './res/resources.qrc' -o './src/gen/resources_rc.py'
10
Write-Host 'Generated code from .ui files'
11
12
$build_vars_path = "$PSScriptRoot/../src/gen/build_vars.py"
13
+Write-Host "Env:GITHUB_EXCLUDE_BUILD_NUMBER: `"$Env:GITHUB_EXCLUDE_BUILD_NUMBER`""
14
+Write-Host $($Env:GITHUB_EXCLUDE_BUILD_NUMBER -eq $true)
15
+Write-Host $($Env:GITHUB_EXCLUDE_BUILD_NUMBER -eq $false)
16
+Write-Host $($Env:GITHUB_EXCLUDE_BUILD_NUMBER -eq 'true')
17
+Write-Host $($Env:GITHUB_EXCLUDE_BUILD_NUMBER -eq 'false')
18
$BUILD_NUMBER = If ($Env:GITHUB_EXCLUDE_BUILD_NUMBER) { '' } Else { Get-Date -Format yyMMddHHmm }
19
$GITHUB_REPOSITORY = $Env:GITHUB_HEAD_REPOSITORY
20
If (-not $GITHUB_REPOSITORY) {
0 commit comments