thing
This commit is contained in:
31
.github/workflows/main.yml
vendored
31
.github/workflows/main.yml
vendored
@@ -1,21 +1,18 @@
|
|||||||
# On every push this script is executed
|
name: Zola on GitHub Pages
|
||||||
on: push
|
|
||||||
name: Build and deploy GH Pages
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
name: Publish site
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.ref == 'refs/heads/main'
|
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: Checkout main
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: switch to source dir
|
- name: Build and deploy
|
||||||
run: cd blog
|
uses: shalzz/zola-deploy-action@v0.20.0
|
||||||
- name: build_and_deploy
|
env:
|
||||||
uses: shalzz/zola-deploy-action@master
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
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 }}
|
|
||||||
|
Reference in New Issue
Block a user