Skip to content

Commit

Permalink
CI: do not deploy HTML on PR
Browse files Browse the repository at this point in the history
  • Loading branch information
omelkonian committed Feb 29, 2024
1 parent 102582d commit 803878b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ jobs:
run: make test

- name: Generate Prelude HTML
if: ${{ matrix.ghc == '9.6.3' }}
if: ${{ matrix.ghc == '9.6.3' && github.event_name != 'pull_request' }}
run: make libHtml

- name: Deploy Prelude HTML
if: ${{ matrix.ghc == '9.6.3' }}
if: ${{ matrix.ghc == '9.6.3' && github.event_name != 'pull_request' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 803878b

Please sign in to comment.