Skip to content

added project title in hero section #48

added project title in hero section

added project title in hero section #48

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Zola
uses: taiki-e/install-action@v2
with:
tool: zola@0.17.2
- name: Build with Zola
run: |
zola build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public