File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 3434 - Review and merge the PR to make the release available via Homebrew
3535
3636The Dagger CI automatically handles building binaries and creating the draft release when tags are pushed.
37+
38+ ## Docs Hotfix
39+
40+ For documentation fixes that need to be published without waiting for a full release:
41+
42+ 1 . ** Squash-merge your documentation PR to main via Github**
43+
44+ 2 . ** Get the SHA of the merged commit**
45+ ``` sh
46+ # Copy the SHA of the merged documentation commit
47+ git fetch origin main && git log origin/main
48+ ```
49+
50+ 3 . ** Cherry-pick the commit onto the docs branch**
51+
52+ ``` sh
53+ git checkout docs --
54+ git cherry-pick < commit-hash>
55+ ```
56+
57+ 4 . ** Push to origin**
58+ ``` sh
59+ git push origin docs
60+ ```
61+
62+ 5 . ** Verify publication**
63+ - Check [ GitHub Commits] ( https://github.com/dagger/container-use/commits/docs/ ) to verify the docs were published successfully
64+ - The docs site should update automatically once the workflow completes
You can’t perform that action at this time.
0 commit comments