add website rebuild action
This commit is contained in:
parent
5591ff376f
commit
a3f6bf85ad
1 changed files with 14 additions and 0 deletions
14
.github/workflows/build-website.yaml
vendored
Normal file
14
.github/workflows/build-website.yaml
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
name: Rebuild Cookbook Website
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Call Deploy Hook
|
||||
run: curl -X POST ${{ secrets.WEBSITE_DEPLOY_HOOK_URL }}
|
||||
Loading…
Reference in a new issue