Skip to content

Commit

Permalink
Merge pull request #2 from IPlayZed/IPlayZed-patch-zola-actions-test
Browse files Browse the repository at this point in the history
I play zed patch zola actions test
  • Loading branch information
IPlayZed authored Dec 15, 2023
2 parents 54efa24 + b1670cf commit b2b75f2
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/github-actions-build-zola-on-push.yml
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 }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.directory
16 changes: 16 additions & 0 deletions blog/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# The URL the site will be built for
base_url = "https://iplayzed.github.io"

# Whether to automatically compile all Sass files in the sass directory
compile_sass = true

# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true

[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true

[extra]
# Put all your custom variables here

0 comments on commit b2b75f2

Please sign in to comment.