Skip to content

Commit

Permalink
Fix var reference, need outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Aug 14, 2024
1 parent 3e302fc commit ccea601
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/cmake-ctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
name: Check Secrets exists
runs-on: ubuntu-latest
outputs:
sign-state: ${{ steps.set-signing-state.BINSIGN }}
sign-state: ${{ steps.set-signing-state.ouputs.BINSIGN }}
steps:
- name: Identify Signing Status
id: set-signing-state
Expand All @@ -57,12 +57,10 @@ jobs:
else
SIGN_VAL=$(echo 'exists')
fi
echo "SIGN_VAL is $SIGN_VAL."
echo "BINSIGN=$SIGN_VAL" >> $GITHUB_OUTPUT
echo "BINSIGN is $BINSIGN."
shell: bash

- run: echo "signing is ${{ steps.set-signing-state.BINSIGN }}."
- run: echo "signing is ${{ steps.set-signing-state.ouputs.BINSIGN }}."

build_and_test_win:
# Windows w/ MSVC + CMake
Expand Down

0 comments on commit ccea601

Please sign in to comment.