Skip to content

Commit 16f4ce3

Browse files
committed
fix typo in cmake-builder.yml
1 parent 5302651 commit 16f4ce3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/cmake-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ jobs:
289289
- name: Build all
290290
run: docker exec build /bin/bash -c "cd ../build && cmake --build . -- -j 2"
291291
- name: Build html
292-
if: (github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/docs_')) && matrix.shared == 'shared' && matrix.boost == 'stdfs' && matrix.mpi == 'serial'
292+
if: (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/docs_')) && matrix.shared == 'shared' && matrix.boost == 'stdfs' && matrix.mpi == 'serial'
293293
run: docker exec build /bin/bash -c "cd ../build && cmake --build . --target html"
294294
- name: Run tests
295295
run: docker exec build /bin/bash -c "cd ../build && ctest --extra-verbose --no-tests=error"
@@ -298,7 +298,7 @@ jobs:
298298
- name: Build examples
299299
run: docker exec build /bin/bash -c "mkdir ../examples_build && cd ../examples_build && cmake ../src/examples -DCMAKE_BUILD_TYPE=Release && cmake --build . -- -j 2 "
300300
- name: Append documentation for the latest release version
301-
if: startsWith(github.ref, 'refs/heads/develop') && matrix.shared == 'shared' && matrix.boost == 'stdfs' && matrix.mpi == 'serial'
301+
if: startsWith(github.ref, 'refs/heads/master') && matrix.shared == 'shared' && matrix.boost == 'stdfs' && matrix.mpi == 'serial'
302302
run: |
303303
docker exec --user root build /bin/bash -c "chown -R p00user /home/p00user/src"
304304
docker exec build /bin/bash -c "git config --unset-all remote.origin.fetch"
@@ -339,7 +339,7 @@ jobs:
339339
docker exec build /bin/bash -c "rm -rf ./${{ steps.extract_docver.outputs.docver }}/_sources"
340340
341341
- name: Deploy documentation
342-
if: (github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/docs_')) && matrix.shared == 'shared' && matrix.boost == 'stdfs' && matrix.mpi == 'serial'
342+
if: (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/docs_')) && matrix.shared == 'shared' && matrix.boost == 'stdfs' && matrix.mpi == 'serial'
343343
uses: s0/git-publish-subdir-action@develop
344344
env:
345345
REPO: self

0 commit comments

Comments
 (0)