Skip to content

Commit

Permalink
chore(deploy): manual deploy and API-triggered deploy (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tieske authored Jul 4, 2024
1 parent bfcdd2c commit d1f6574
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
run: |
./grabrepos.py
hugo
- if: github.event_name == 'push' && always()
- if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch' && always()
name: Deploy website
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
force_orphan: true
force_orphan: true

0 comments on commit d1f6574

Please sign in to comment.