Skip to content

Commit

Permalink
(CI) Fix build on tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
kdesnos committed Oct 12, 2021
1 parent 4242f81 commit caa6e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
cmake --build . --target GEGELATI --config Debug
cmake --build . --target doc
cmake --build . --target INSTALL --config Debug
if [ ${GITHUB_REF##*/} == "develop" ] || [ ${GITHUB_REF##*/} == "master" ] || [[ "${{ github.base_ref }}" == *"tags/v"* ]]; then cmake --build . --target INSTALL --config Release ; fi;
if [[ "${{ github.ref }}" == *"master" ]] || [[ "${{ github.ref }}" == *"develop" ]] || [[ "${{ github.ref }}" == *"tags/v"* ]]; then cmake --build . --target INSTALL --config Release ; fi;
cmake --build . --target runTests --config Debug
shell: bash
- name: Run Tests
Expand Down

0 comments on commit caa6e17

Please sign in to comment.