diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-04 19:03:38 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-04 19:03:38 +0200 |
commit | b18772a8e574d3625564b1763b220d695d8b4720 (patch) | |
tree | 0e626f27149cb183a534cbbd42fb1a102efbbfd6 /.github/workflows | |
parent | bump dependencies (diff) | |
download | wireguard-config-b18772a8e574d3625564b1763b220d695d8b4720.tar.gz wireguard-config-b18772a8e574d3625564b1763b220d695d8b4720.zip |
workflows/jekyll: deploy on manual runs also
Diffstat (limited to '.github/workflows')
-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 2c90ba4..6701821 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' |