diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2021-11-09 09:03:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-09 09:03:06 -0500 |
commit | 51f6f15d710c39c6844ceef58efea6db93c46d61 (patch) | |
tree | f913c9c8dc0b660be1b7b636ee1fc5aecec714a0 | |
parent | 358a60e1b46000ea99ef10b4dd709e92f75ff74b (diff) | |
download | libgit2-51f6f15d710c39c6844ceef58efea6db93c46d61.tar.gz |
ci: only update docs on pushethomson/docs_ci
Only update the documentation on a `push`. We were previously updating the documentation only when not in a `pull_request`, which meant that we would push documentation updates in manual build triggers.
-rw-r--r-- | .github/workflows/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 572f02544..e805b1bb8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -300,4 +300,4 @@ jobs: - name: Push documentation branch working-directory: source run: git push origin gh-pages - if: github.event_name != 'pull_request' && github.repository == 'libgit2/libgit2' + if: github.event_name == 'push' && github.repository == 'libgit2/libgit2' |