Skip to content

Commit

Permalink
fix order to print env var
Browse files Browse the repository at this point in the history
  • Loading branch information
willwade committed Sep 19, 2024
1 parent 77b1678 commit be19184
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ jobs:
cd build
cmake .. -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release
- name: Verify JSONCPP Build Output
run: |
dir ${{ env.JSONCPP_DLL_DIR }}
- name: Set up JSONCPP paths
run: |
echo "JSONCPP_INCLUDE_DIR=${{ github.workspace }}/jsoncpp/include" >> $GITHUB_ENV
echo "JSONCPP_LIB_DIR=${{ github.workspace }}/jsoncpp/build/lib/Release" >> $GITHUB_ENV
echo "JSONCPP_DLL_DIR=${{ github.workspace }}/jsoncpp/build/bin/Release" >> $GITHUB_ENV
- name: Verify JSONCPP Build Output
run: |
dir ${{ env.JSONCPP_DLL_DIR }}
- name: Build pysapittsengine
run: |
cd engine
Expand Down

0 comments on commit be19184

Please sign in to comment.