Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonHeybrock committed May 19, 2022
1 parent d400c3b commit 8fb761b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ jobs:
- run: python -m pip install --upgrade pip
- run: python -m pip install -r requirements/ci.txt
- run: tox --skip-pkg-install -e docs2 scippnexus
if: ${{ github.event.inputs.publish || inputs.publish }}
if: ${{ github.event.inputs.publish == 'true' || inputs.publish }}
- run: tox -e docs2
if: ${{ !(github.event.inputs.publish || inputs.publish) }}
if: ${{ !(github.event.inputs.publish == 'true' || inputs.publish) }}
- uses: actions/upload-artifact@v3
with:
name: html
path: html/

- uses: JamesIves/github-pages-deploy-action@v4.3.3
if: ${{ github.event.inputs.publish || inputs.publish }}
if: ${{ github.event.inputs.publish == 'true' || inputs.publish }}
with:
branch: gh-pages
folder: html
Expand Down

0 comments on commit 8fb761b

Please sign in to comment.