-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
# On every push this script is executed | ||
on: push | ||
name: Build and deploy GH Pages | ||
name: Zola on GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
name: Publish site | ||
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/master' | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- name: build_and_deploy | ||
uses: shalzz/[email protected] | ||
env: | ||
# Target branch | ||
PAGES_BRANCH: gh-pages | ||
# Or if publishing to the same repo, use the automatic token | ||
TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Checkout master | ||
uses: actions/[email protected] | ||
- name: Build and deploy | ||
uses: shalzz/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|