diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-04 18:25:48 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-04 18:25:48 +0200 |
commit | 716467714d3771b28e363e92b43bd153a8bce135 (patch) | |
tree | 5c770713dcdc0cc57de400224579faf95b7cf419 /.github/workflows/jekyll.yml | |
parent | README: update (diff) | |
download | blog-716467714d3771b28e363e92b43bd153a8bce135.tar.gz blog-716467714d3771b28e363e92b43bd153a8bce135.zip |
workflows/jekyll: deploy on manual runs also
Diffstat (limited to '.github/workflows/jekyll.yml')
-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 a918d1c..2d33996 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/gh-pages' + if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/gh-pages' |