Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,31 @@
- Review and merge the PR to make the release available via Homebrew

The Dagger CI automatically handles building binaries and creating the draft release when tags are pushed.

## Docs Hotfix

For documentation fixes that need to be published without waiting for a full release:

1. **Squash-merge your documentation PR to main via Github**

2. **Get the SHA of the merged commit**
```sh
# Copy the SHA of the merged documentation commit
git fetch origin main && git log origin/main
```

3. **Cherry-pick the commit onto the docs branch**

```sh
git checkout docs --
git cherry-pick <commit-hash>
```

4. **Push to origin**
```sh
git push origin docs
```

5. **Verify publication**
- Check [GitHub Commits](https://github.com/dagger/container-use/commits/docs/) to verify the docs were published successfully
- The docs site should update automatically once the workflow completes