diff options
author | Jan Raasch <425211+janraasch@users.noreply.github.com> | 2023-03-08 18:45:36 +0100 |
---|---|---|
committer | Jan Raasch <425211+janraasch@users.noreply.github.com> | 2023-03-08 18:45:36 +0100 |
commit | 7620f8d1f7253115713a4e3032e053ba1fa84fd8 (patch) | |
tree | 963884bbedf68831f479b36e566aadebd9f87a30 | |
parent | bbb374cb157b062ac43c2591095135bc47e7d5f2 (diff) | |
download | hugo-bearcub-7620f8d1f7253115713a4e3032e053ba1fa84fd8.tar.gz hugo-bearcub-7620f8d1f7253115713a4e3032e053ba1fa84fd8.tar.bz2 |
chore(ci): fix deploy condition - for real! :)
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b441fd9..ed434f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: needs: build name: Deploy to GitHub Pages runs-on: ubuntu-latest - if: github.ref == 'refs/heads/source' + if: github.event_name == 'push' steps: - uses: actions/checkout@v3 - uses: actions/download-artifact@v3 |