Skip to content

Commit 0b31f3d

Browse files
authored
Merge pull request #72 from AdaptiveParticles/joeljonsson-patch-1
fix(docs): remove branch condition for deployment
2 parents e0347e8 + da164aa commit 0b31f3d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/build-deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,10 @@ jobs:
6565
submodules: true
6666

6767
- name: Submodule recursive
68-
run: git submodule update --init --recursive
69-
68+
run: |
69+
git submodule update --init --recursive
70+
git status
71+
7072
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
7173
- uses: lukka/get-cmake@latest
7274
# Restore both vcpkg and its artifacts from the GitHub cache service.

.github/workflows/deploy-docs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ jobs:
120120
echo "VERSION_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
121121
122122
- name: Deploy documentation
123-
if: ${{ (env.BRANCH_NAME == 'master') || (env.BRANCH_NAME == 'develop') }}
124123
uses: JamesIves/github-pages-deploy-action@v4
125124
with:
126125
branch: gh-pages # The branch the action should deploy to.

0 commit comments

Comments
 (0)