mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-21 14:50:57 +00:00
15 lines
296 B
Markdown
Executable File
15 lines
296 B
Markdown
Executable File
---
|
|
description: Publish the site to github
|
|
allowed-tools: Bash(git:*)
|
|
---
|
|
|
|
Deploy the site to production.
|
|
|
|
Steps:
|
|
1. add all changes
|
|
2. Commit any pending changes
|
|
3. push to github
|
|
|
|
!git add -A && git commit -m "<insert commit message here>" || echo "No changes to commit"
|
|
!git push origin main
|