Deploy WorkFlow(2)

Collaboration Rules You could set rules for collaboration and preventing safety issues. Usually, you want prevent someone modify main branch arbitrarily and restrict all push behavior after a carefully check on pr. Settings Rules restrict creations restrict update restrict deletions block force pushes Here are some simple block rules you want to set. Pull Request You should create a new branch to circumvent awkward situation for your modification, you can create a new pull request to do this in ease. ...

March 24, 2025 · nostalgia

Deploy WorkFlow(1)

Deploy of Blog Here a record of deployment of static blog by hugo Preparation Toolchain: hugo git Create Site hugo new site <your-name> cd <your-name> git init git submodule add https://gitclone.com/github.com/adityatelange/hugo-PaperMod.git themes/PaperMod Setting the theme to “PaperMod” # ... above content theme = "PaperMod" Workflow Configuration Git Ignore Setting .gitignore to remove auto-generated content .hugo_build.lock public/ resources/ Issue Template A readable template can help you classify issues, make it more understandable. Setting issue template located in .github/ISSUE_TEMPLATE with: ...

March 24, 2025 · nostalgia