Skip to content

Commit

Permalink
Create zola
Browse files Browse the repository at this point in the history
Test GH action to build Zola.
  • Loading branch information
IPlayZed committed Dec 15, 2023
1 parent c61b10f commit f4473b1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/zola
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# On every push this script is executed
on: push
name: Build and deploy GH Pages
jobs:
build:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: checkout
uses: actions/checkout@v4
- name: build_and_deploy
uses: shalzz/[email protected]
env:
# Target branch
PAGES_BRANCH: gh-pages
# Provide personal access token
TOKEN: ${{ secrets.TOKEN }}
# Or if publishing to the same repo, use the automatic token
TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f4473b1

Please sign in to comment.