# Making a Release

> ⚠️ **This documentation is outdated!** A current version is available at [openhdfpv.org](https://openhdfpv.org)
>
> [📖 **View Updated Version of This Page** →](https://openhdfpv.org)

***

In order to push to the cloudsmith package group that is NOT for testing you have to create a tag in github from a terminal. It cannot be a lightweight tag. Correct format is:\
`git tag -a 2.0.9 -m "2.0.9"`\
\
Other useful commands in terminal in git playing with tags:

* See if there is a match\
  `git describe --exact-match HEAD`
* Push your new tag (will also trigger the build in drone.io since its a commit)\
  `git push --tags`
* Delete a tag\
  `git tag -d 2.0.9`

This way the package.sh script will see the tag in the git describe command and thus trigger a push to the appropriate directory.\
\
To pull the correct version of openhd you must define the version in the image builder stage 2\
`OPENHD_PACKAGES="openhd=2.0.9"`


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://openhd.gitbook.io/open-hd/master/developer-corner/making-a-release.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
