Skip to content

campus_tour.md: various text fixes #71

campus_tour.md: various text fixes

campus_tour.md: various text fixes #71

Workflow file for this run

# credit: https://github.com/marketplace/actions/zola-deploy-to-pages
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/[email protected]
with:
submodules: true
- name: Build only
uses: shalzz/zola-deploy-action@master
env:
BUILD_ONLY: true
BUILD_FLAGS: --drafts
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build_and_deploy:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout main
uses: actions/[email protected]
with:
submodules: true
- name: Build and deploy
uses: shalzz/zola-deploy-action@master
env:
PAGES_BRANCH: gh-pages
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}