Skip to content

YusukeKato/YusukeKatoBlog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YusukeKatoBlog

Blog URL: https://yusukekato.jp/

How to update blog

Workflows

  1. Write articles (ex: markdown/2024/0403.md)
  2. Resize images
  3. Update remote repository

Automatically deployed with GitHub Actions.

Resize images

Execute the following command:

cd scripts
bash resize_images.bash

Update remote repository

Execute the following command:

git add -A
git commit -m "update"
git push origin main

Repository info.

Deploying with GitHub Actions

Setup file: workflows/deploy.yaml

Markdown To HTML

Conversion script: scripts/md2html.py

Generate index.html

Python script: scripts/generate_index.py

Generate sitemap.xml

Python scripts: scripts/generate_sitemap.py

Update scripts