8000 More typo fixes · l-mb/l-mb.github.io@e5020ce · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

More typo fixes

More typo fixes #28

Workflow file for this run

name: Zola on GitHub Pages
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main'
steps:
- name: Checkout main
uses: actions/checkout@v4
- name: Build only
uses: shalzz/zola-deploy-action@v0.19.2
env:
BUILD_DIR: .
BUILD_ONLY: true
BUILD_FLAGS: --drafts
CHECK_LINKS: true --drafts
# A GitHub token is not necessary when BUILD_ONLY is true
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build_and_deploy:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout main
uses: actions/checkout@v4
- name: Build and deploy
uses: shalzz/zola-deploy-action@v0.19.2
env:
BUILD_DIR: .
PAGES_BRANCH: gh-pages
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0