Skip to content

Commit

Permalink
Remove test_sphinx_docs
Browse files Browse the repository at this point in the history
Signed-off-by: Addisu Z. Taddese <[email protected]>
  • Loading branch information
azeey committed Jul 2, 2024
1 parent 14684e5 commit e44c638
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
name: Deploy Website and Docs

on:
pull_request:
push:
branches:
- master
- test_sphinx_docs # TODO (azeey) Remove after testing is done
- master

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -86,9 +86,11 @@ jobs:
with:
name: website-docs-merged
path: ./
- name: Deploy
- name: Commit
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/test_sphinx_docs'
# The workflow upto this point is good for generating a preview,
# but only commit to deploy if we are on the master branch (not a pull request).
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./
Expand Down

0 comments on commit e44c638

Please sign in to comment.