Skip to content

Commit

Permalink
(CI) Add tag to trigger of release build on windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
kdesnos committed Oct 11, 2021
1 parent b533ea4 commit 18db242
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" ] ; then cmake --build . --target INSTALL --config Release ; fi;
if [ ${GITHUB_REF##*/} == "develop" ] || [ ${GITHUB_REF##*/} == "master" ] || [[ "${{ github.base_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 18db242

Please sign in to comment.