mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-07-22 01:19:30 +00:00
85a77bf6d1
- Show month/year next to recent posts (data was already cached) - Move inline homepage styles into site.css classes - Trim dormant projects from subtitle; date-stamp the Now section - Split the Threads paragraph; link random essay and graph - Homepage-specific meta description - Fix sitemap-advertised bare URLs (/graph, /quotes, etc.) with 308 redirects to their /archive/ routes Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
21 lines
430 B
Markdown
21 lines
430 B
Markdown
---
|
|
name: "source-command-publish"
|
|
description: "Publish the site to github"
|
|
---
|
|
|
|
# source-command-publish
|
|
|
|
Use this skill when the user asks to run the migrated source command `publish`.
|
|
|
|
## Command Template
|
|
|
|
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
|