Skip to content

Commit

Permalink
Merge pull request #63 from antoniovazquezblanco/dev/docfix
Browse files Browse the repository at this point in the history
Fix doc deployment
  • Loading branch information
BatchDrake committed Jun 18, 2023
2 parents a100653 + 22d3f69 commit 09ea33f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ jobs:
path: build/doc/html/

- name: Setup Pages
if: contains('develop', github.ref)
if: contains(github.ref, 'develop')
uses: actions/configure-pages@v3
with:
enablement: true

- name: Upload documentation to Github Pages
if: contains('develop', github.ref)
if: contains(github.ref, 'develop')
uses: actions/upload-pages-artifact@v1
with:
path: build/doc/html/

- name: Deploy to GitHub Pages
if: contains('develop', github.ref)
if: contains(github.ref, 'develop')
uses: actions/deploy-pages@v2

0 comments on commit 09ea33f

Please sign in to comment.