Skip to content

feat: favicon

feat: favicon #23

Workflow file for this run

name: pages
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
build:
name: Pages Deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: 'latest'
extended: true
- name: Build
run: |
cd exampleSite
mkdir themes
ln -s ../.. themes/kita
hugo
- name: Upload static files as artifact
id: deployment
uses: actions/upload-pages-artifact@v3 # or specific "vX.X.X" version tag for this action
with:
path: ./exampleSite/public
# Deployment job
deploy:
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4