Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci/build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if not "%TOOLCHAIN:vs-=%"=="%TOOLCHAIN%" set HUNTER_BINARY_DIR=C:\__BIN
:: Add msbuild to PATH (for vs-14 toolchain, GitHub windows-2016 runner doesn't have VS 2015)
if "%TOOLCHAIN:~0,5%"=="vs-14" set PATH=C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin;%PATH%

if "%BRANCH_NAME%" == "master" (
if "%BRANCH_NAME%" == "master" if not "%GITHUB_USER_PASSWORD%" == "" (
python jenkins.py --upload
) else (
python jenkins.py
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if [[ "$TOOLCHAIN" =~ "osx-11-0" ]]; then
fi

# Run build script
if [[ "$BRANCH_NAME" == "master" ]]; then
if [[ "$BRANCH_NAME" == "master" && ! -z "$GITHUB_USER_PASSWORD" ]]; then
python jenkins.py --upload
else
python jenkins.py
Expand Down