diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-04 18:31:09 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-04 18:31:09 +0200 |
commit | d42555a90de2813095bdcdb47c27ea45e9e16806 (patch) | |
tree | 13a1c9cd0988c048e9004a24a28fc2e08090891a | |
parent | README: update (diff) | |
download | egor-tensin.github.io-d42555a90de2813095bdcdb47c27ea45e9e16806.tar.gz egor-tensin.github.io-d42555a90de2813095bdcdb47c27ea45e9e16806.zip |
workflows/jekyll: deploy on manual runs also
-rw-r--r-- | .github/workflows/jekyll.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 5b6980a..6a3c646 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -35,4 +35,4 @@ jobs: REMOTE_HOST: '${{ secrets.REMOTE_HOST }}' REMOTE_PORT: '${{ secrets.REMOTE_PORT }}' REMOTE_DIR: '${{ secrets.REMOTE_DIR }}' - if: github.event_name == 'push' && github.ref == 'refs/heads/master' + if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/master' |