Skip to content

Commit

Permalink
Automatically deploy website on updates to main (#208)
Browse files Browse the repository at this point in the history
### Description

Automatically deploy the website when we update main, instead of having
to merge it to Zola.
 
### Issues Resolved

No issue, but discussed it offline.

### Check List
- [X] Commits are signed per the DCO using `--signoff`

By submitting this pull request, I confirm that my contribution is made
under the terms of the BSD-3-Clause License.

Signed-off-by: Madelyn Olson <[email protected]>
  • Loading branch information
madolson authored Feb 18, 2025
1 parent 458f45e commit 402d6c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/zola-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Zola on GitHub Pages
name: Deploy website

on:
push:
branches: ["prod_zola"]
branches: ["main"]

workflow_dispatch:

Expand All @@ -18,7 +18,7 @@ jobs:
- name: Checkout prod
uses: actions/checkout@v4
with:
ref: prod_zola
ref: main
path: website

- name: Checkout valkey-doc
Expand Down

0 comments on commit 402d6c7

Please sign in to comment.