Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
EchterAgo committed Oct 20, 2023
1 parent 3bb4b35 commit 2798e91
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/windows-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ on:
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Debug
IS_STEP_DEBUG: ${{ secrets.ACTIONS_STEP_DEBUG }}

jobs:
build_windows:
Expand All @@ -41,6 +42,7 @@ jobs:

- name: debug - git status
run: git status
if: ${{ env.IS_STEP_DEBUG == 'true' }}

#https://stackoverflow.com/a/60883893
# "C:\Program Files\Git\bin\git.exe" -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +90acd8f20e6d0c14b83241cc7dcd17df27d5a95b:refs/remotes/origin/andrew_workflows-7
Expand Down Expand Up @@ -165,7 +167,7 @@ jobs:

- name: debug - print log
run: cat "${{github.workspace}}\InnoSetup-Install.log"
if: ${{ secrets.ACTIONS_STEP_DEBUG == 'true' }}
if: ${{ env.IS_STEP_DEBUG == 'true' }}

- name: Check InstallLocation Registry Value
run: |
Expand Down

0 comments on commit 2798e91

Please sign in to comment.